DopplerHQ / cli

The official CLI for interacting with your Doppler secrets and configuration.
https://docs.doppler.com
Apache License 2.0
221 stars 44 forks source link

[BUG] Cannot CTRL-C ray serve when running with doppler #382

Closed lukasschmit closed 1 year ago

lukasschmit commented 1 year ago

Describe the bug I am trying to develop using ray serve locally. When I do

doppler run -- serve run test:binding

The process runs but cannot be killed with CTRL-C/D. I have to kill -9 it.

To Reproduce

pip install "ray[serve]"
doppler run -- test:binding # attached

test.py.zip

Expected behavior I expect the process to be able to be killed normally, but CTRL-C/D are unresponsive.

Screenshots

Screenshot 2023-04-18 at 11 40 28 AM

Desktop (please complete the following information):

CLI Version:

doppler --version
v3.56.2
Piccirello commented 1 year ago

Could you try this again with the --forward-signals flag? i.e. doppler run --forward-signals -- serve run test:binding