Kumbirai Tanekha

Results 30 comments of Kumbirai Tanekha

I'll think about it a bit and see if I can suggest anything useful.

@darrachequesne, so here's an idea. We can have the "active" participants subscribe to a "proxy" channel when they come online. Nothing actually goes through that particular channel, it's just used...

@darrachequesne You can fall back to the request channel for backwards compatibility if desired.

I've created a PR to demonstrate the approach^

@Nom4d3 not sure if you need this still but this does the job. ``` class MyQRDetector extends Detector { private Detector mDelegate; MyQRDetector(Detector delegate) { mDelegate = delegate; } public...

## Proposal When the substitution variable has been declared! ``` $ summon \ -p /bin/echo \ -D temp=some_value \ --yaml 'MY_SECRET1: fakeSecret#$temp' \ printenv MY_SECRET1 ``` ``` fakeSecret#some_value ``` Since...

Hi @Jishin85. Thank you for creating the issue. I'm in agreement, an alpine package would be very useful. We're shifting our release build automation from our own scripts to using...

Lifting environment variables from summon into your docker container has never been easier. It even works with !file . ``` function summon_envvars_docker_opts() { ( set -euo pipefail local secretsyml="${1:-secrets.yml}" if...

Supporting `!file` is challenging. 1. You can't predict if local volumes can be mounted into the Docker container 2. File paths on the host can look different from those on...