David Havas
David Havas
Additionally it seems `typing_extensions` dependency is missing as well I started to fix it a bit however after that I run into some dependency hell with npm packages. Browserslist: caniuse-lite...
I was using the pip based steps: https://testplan.readthedocs.io/en/latest/getting_started.html#using-a-virtualenv So the result of the `pip install https://github.com/morganstanley/testplan/archive/main.zip` command misses that file, not when I download the archive with wget or some...
Did you try using `extra_pip_args` to provide the custom parameters for pip? It seems to be working well https://github.com/bazelbuild/rules_python/blob/main/examples/pip_install/WORKSPACE#L16 ``` pip_install( ... extra_pip_args = [ "--index-url", "", "--extra-index-url", "", ],...
Bumping this topic as I think I face a similar issue. I am using the rust binding of librdkafka library (1.9.2). I implemented a periodic resubscribe logic which subscribes to...
do we have any updates on this topic? KSQL is unable to convert the stringified enum field back to the avro serialized index.
[subscribe](https://docs.rs/rdkafka/latest/rdkafka/consumer/trait.Consumer.html#tymethod.subscribe) method is implemented in the `Consumer` trait so you need to import that trait to the module with `use rdkafka::consumer::Consumer;`
Isn't that caused by stamping and workspace status? Can you check if it is still happening if disable stamping?
I found that the stamp flag with workspace_status can behave weirdly in our project. For example sometimes it didn't trigger rebuild. But similarly when I triggered a CI later on...
Can you try without workspace status file?
One thing which came to my mind. You could also use the build event file for more information. `--build_event_json_file`. At least that helped me in identifying some cases what was...