mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-19 16:03:00 +00:00
add missing allow_none=True in Spawner
This commit is contained in:
@@ -303,7 +303,7 @@ class LocalProcessSpawner(Spawner):
|
||||
help="Seconds to wait for process to halt after SIGKILL before giving up"
|
||||
)
|
||||
|
||||
proc = Instance(Popen)
|
||||
proc = Instance(Popen, allow_none=True)
|
||||
pid = Integer(0)
|
||||
|
||||
def make_preexec_fn(self, name):
|
||||
|
Reference in New Issue
Block a user