From 38f1752a2d209c057067a9b29447e982d97cf200 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Wed, 28 Jun 2017 15:04:10 +0300 Subject: [PATCH] Move gcworker into its own package --- conf/init/service/gcworker/run | 2 +- workers/gcworker/__init__.py | 0 workers/{ => gcworker}/gcworker.py | 0 3 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 workers/gcworker/__init__.py rename workers/{ => gcworker}/gcworker.py (100%) diff --git a/conf/init/service/gcworker/run b/conf/init/service/gcworker/run index 6a843d4b8..50b974b6a 100755 --- a/conf/init/service/gcworker/run +++ b/conf/init/service/gcworker/run @@ -3,6 +3,6 @@ echo 'Starting GC worker' cd / -venv/bin/python -m workers.gcworker 2>&1 +venv/bin/python -m workers.gcworker.gcworker 2>&1 echo 'Repository GC exited' \ No newline at end of file diff --git a/workers/gcworker/__init__.py b/workers/gcworker/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/workers/gcworker.py b/workers/gcworker/gcworker.py similarity index 100% rename from workers/gcworker.py rename to workers/gcworker/gcworker.py