From 8528684dc42ef4ca9ee633bf6ac26ed2599afb55 Mon Sep 17 00:00:00 2001 From: Matt Riedemann Date: Mon, 22 Jun 2020 15:35:15 -0500 Subject: [PATCH] Remove old context-less print statement This was added in PR #2721 and by default results in just printing out "10" without any context when starting the hub service. This simply removes the orphan print statement. I'm open to changing this to a debug log statement with context if someone finds that useful, e.g.: `self.log.debug('Effective init_spawners_timeout: %s', init_spawners_timeout)` --- jupyterhub/app.py | 1 - 1 file changed, 1 deletion(-) diff --git a/jupyterhub/app.py b/jupyterhub/app.py index 8b2119ed..dd8f6db2 100644 --- a/jupyterhub/app.py +++ b/jupyterhub/app.py @@ -2360,7 +2360,6 @@ class JupyterHub(Application): if init_spawners_timeout < 0: # negative timeout means forever (previous, most stable behavior) init_spawners_timeout = 86400 - print(init_spawners_timeout) init_start_time = time.perf_counter() init_spawners_future = asyncio.ensure_future(self.init_spawners())