Vitalii Kryvenko

Results 283 comments of Vitalii Kryvenko

This is a big pain point. I have a docker image that I use for CI runs. In that docker image I have `mold` linker installed, but I can't just...

@fdncred the main point is to inherit the stdout/stderr - not capture it, meaning stdout/stderr must be propagated to the current process that spawned the child process. For example, when...

I don't think `run-external` improves the experience for external commands. How would one use it to pass the `--push` flag based on the boolean value stored in `$push` variable? I...

@melMass Regarding the uses case for non-external commands. I have a development script that has commands: - `"main docker build" [--push, --release]` - build the app's docker image - `"main...

The suggestion from @amtoine regarding the `def build-imp [--push: bool = false, --release: bool = false]` slightly improves the situation, but then you can no longer call the `build-imp` this...

Maybe there could be some way to signal to the vmagent that we are about to shutdown, and it needs to do the final scrape and push the metrics? This...

One good reason to implement at least `Send` for the types is to be able to pass them and return them from `tokio::task::spawn_blocking()`, which would run the blocking operations in...

I've noticed this problem with running the following script [my repository](https://github.com/Veetaha/snowpity/tree/c529799c9cdeb3559e1cabc50890761abd8816e4). It hangs on the `where` inside part of the pipeline in `main` for 4 seconds. Note that removing the...

This feature would be very helpful if there was some interpolation syntax to define a message template string. ``` message: 'Job for {branch} failed at {time}' ``` I wish I...

Oh god, I think we've been not running doc tests on our CI for a couple of years due to this...