Skip to content

Commit

Permalink
add patch to disable culler
Browse files Browse the repository at this point in the history
  • Loading branch information
mathematicalmichael committed Aug 28, 2022
1 parent b177766 commit f889dae
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions disable-culler.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
diff --git a/jupyterhub_config.py b/jupyterhub_config.py
index a71e21e..5233229 100755
--- a/jupyterhub_config.py
+++ b/jupyterhub_config.py
@@ -235,14 +235,14 @@ c.JupyterHub.db_url = 'postgresql://postgres:{password}@{host}/{db}'.format(
)

# https://github.com/jupyterhub/jupyterhub-idle-culler
-c.JupyterHub.services = [
- {
- "name": "jupyterhub-idle-culler-service",
- "command": [
- sys.executable,
- "-m", "jupyterhub_idle_culler",
- "--timeout=3600",
- ],
- "admin": True,
- }
-]
+# c.JupyterHub.services = [
+# {
+# "name": "jupyterhub-idle-culler-service",
+# "command": [
+# sys.executable,
+# "-m", "jupyterhub_idle_culler",
+# "--timeout=3600",
+# ],
+# "admin": True,
+# }
+# ]

0 comments on commit f889dae

Please sign in to comment.