From e2cf2d6f2b17c4e682444172317d9bb20a1a0f16 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Wed, 12 Jul 2017 15:53:01 +0300 Subject: [PATCH] Move teamsyncworker into its own package --- conf/init/service/teamsyncworker/run | 2 +- workers/teamsyncworker/__init__.py | 0 workers/{ => teamsyncworker}/teamsyncworker.py | 0 3 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 workers/teamsyncworker/__init__.py rename workers/{ => teamsyncworker}/teamsyncworker.py (100%) diff --git a/conf/init/service/teamsyncworker/run b/conf/init/service/teamsyncworker/run index 17b45459f..2ec485670 100755 --- a/conf/init/service/teamsyncworker/run +++ b/conf/init/service/teamsyncworker/run @@ -4,6 +4,6 @@ echo 'Starting team synchronization worker' QUAYPATH=${QUAYPATH:-"."} cd ${QUAYDIR:-"/"} -PYTHONPATH=$QUAYPATH venv/bin/python -m workers.teamsyncworker 2>&1 +PYTHONPATH=$QUAYPATH venv/bin/python -m workers.teamsyncworker.teamsyncworker 2>&1 echo 'Team synchronization worker exited' \ No newline at end of file diff --git a/workers/teamsyncworker/__init__.py b/workers/teamsyncworker/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/workers/teamsyncworker.py b/workers/teamsyncworker/teamsyncworker.py similarity index 100% rename from workers/teamsyncworker.py rename to workers/teamsyncworker/teamsyncworker.py