Eivar Montenegro
Eivar Montenegro
@yo1dog I think you rather want to use `Promise.allSettled` instead of `Promise.all`, the former waits for all promises to be completed while the latter rejects immediately upon any of the...
@seekayel and @yo1dog: you guys probably are aware of this, but your examples seems to me like an illustration of a misuse of `process.exit`, consider the following scenario: 1. Two...
@seekayel I agree that you must call flush, but you shouldn't call exit directly, instead make sure there is no additional work pending in the event loop, in case you...
Try defining the variable DOCKER_HOST either before running act: ```bash export DOCKER_HOST=$(docker context inspect --format '{{.Endpoints.docker.Host}}') act -j test ... ``` or as a one liner: ```bash DOCKER_HOST=$(docker context inspect...
Just to discard that this is in fact related to special characters I have created the sample presentation matisse1.md using `MaTiSSe.py --sample matisse1.md`, then tried with `MaTiSSe.py -i matisse1.md` with...