Skip to content

Commit

Permalink
Do not print address and port when starting server
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Karetnikov committed Oct 22, 2023
1 parent 0f75d48 commit 526a556
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions conda-store-server/conda_store_server/server/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,10 +336,6 @@ def start(self):

# start worker if in standalone mode
if self.standalone:
address = "localhost" if self.address == "0.0.0.0" else self.address
print(
f"Starting standalone conda-store server at http://{address}:{self.port}"
)
import multiprocessing

multiprocessing.set_start_method("spawn")
Expand Down

0 comments on commit 526a556

Please sign in to comment.