diff options
| author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-10-04 18:59:32 +0200 |
|---|---|---|
| committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-10-04 18:59:39 +0200 |
| commit | c6c8f19f1af06678f66f37e3002990a9660e2950 (patch) | |
| tree | 88dacea7f9448ec9021b848c3195ba61b62b2492 | |
| parent | bb81c865711c333a3acf195cefc19215969e007b (diff) | |
| download | RWA.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.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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(): |
