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

Update run_vizier_server.py top level pydoc. #72

Merged
merged 1 commit into from
Jul 1, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion demos/run_vizier_server.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
"""Sets up the Vizier Service. This should be done on a server machine."""
"""Sets up the Vizier Service gRPC server.

This should be done on a server machine:

```
python run_vizier_server.py
```

After running the command, the address of the server, formatted as:
"localhost:[PORT]" will be logged to stdout.
This address should be used as a command line argument to run_vizier_client.py
"""

from concurrent import futures
import time
Expand Down