Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace subprocess.Popen with subprocess.run #452

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

rlempka
Copy link

@rlempka rlempka commented May 14, 2024

The use of Popen creates a non-blocking subprocess. When launching Docker containers in detached mode (-d flag) this causes the container to start and then immediately stop, since the main thread within the container has completed all tasks. In addition, there are no logs or errors generated upon exit.

As it is very common to launch containers in detached mode and the launch_triton_server.py may be specified as the entry point, using run follows Docker best practices by having tritonserver run as the main process (https://docs.docker.com/config/containers/multi-service_container/).

…ner exit when launching containers in detached mode
@byshiue byshiue self-assigned this Jun 3, 2024
@byshiue byshiue added the triaged Issue has been triaged by maintainers label Jun 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
triaged Issue has been triaged by maintainers
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants