joerg1985

Results 187 comments of joerg1985

Just wrote my first lines of rust code to set the permissions while the files are created: https://github.com/joerg1985/selenium/commit/df3ae25105381e5b16cfe3e64b1897f914e73923 Will run the pipeline now several times to see if the issue...

still the same issue: https://github.com/joerg1985/selenium/actions/runs/5693665418/job/15433934188#step:14:194

There is a [File.sync_all](https://doc.rust-lang.org/std/fs/struct.File.html#method.sync_all) method, just added it https://github.com/joerg1985/selenium/commit/c052cbccc1702f08d68f30e2a6f5db4985c72e44 CI is running, keep fingers crossed

tried [unistd/fn.fsync](https://docs.rs/nix/latest/nix/unistd/fn.fsync.html) and [unistd/fn.syncfs](https://docs.rs/nix/latest/nix/unistd/fn.syncfs.html) with no success.

Bazel does run the UnitTests concurrently from different processes, so one process will invoke the download of the selenium manager and another one will pickup the incomplete file without the...

PS: i also noticed Bazel does not show the cause of an exception in the console. this might be helpfull to detect the root cause of other failing tests.

> 1. This is not the kind of code I'm good at. Okay, so we might get others into this. > 2. I thought there was locking I am not...

I think this will happen as soon as someone is running tests in parallel on the same system and the selenium manager is downloading something. The first call to the...

I just noticed the issue again in a recent run, the links above are outdated: https://github.com/SeleniumHQ/selenium/actions/runs/5983650185/job/16234615066#step:14:295

I think bazel is using multiple processes to run tests in parallel, therefore the singleton does not help to fix To wait until the driver is executable could be implemented...