aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2020-10-04 18:59:32 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2020-10-04 18:59:39 +0200
commitc6c8f19f1af06678f66f37e3002990a9660e2950 (patch)
tree88dacea7f9448ec9021b848c3195ba61b62b2492
parentbb81c865711c333a3acf195cefc19215969e007b (diff)
downloadRWA.Support.SessionService-c6c8f19f1af06678f66f37e3002990a9660e2950.tar.gz
RWA.Support.SessionService-c6c8f19f1af06678f66f37e3002990a9660e2950.tar.bz2
RWA.Support.SessionService-c6c8f19f1af06678f66f37e3002990a9660e2950.zip
lock.py: Adapt to lock dir and lock file name to new project namespace.
-rw-r--r--lock.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lock.py b/lock.py
index 723c1b7..866810e 100644
--- a/lock.py
+++ b/lock.py
@@ -26,8 +26,8 @@
import os
import tempfile
-lock_dir_path = os.path.join(tempfile.gettempdir(), "rwa-session-service")
-lock_file_path = os.path.join(lock_dir_path, "rwa-session-service.lock")
+lock_dir_path = os.path.join(tempfile.gettempdir(), "rwa.support.sessionservice")
+lock_file_path = os.path.join(lock_dir_path, "rwa.support.sessionservice.lock")
def lock():