[Python-modules-commits] [python-asgi-ipc] 05/13: Add debug statement.

Michael Fladischer fladi at moszumanska.debian.org
Fri Nov 17 12:24:56 UTC 2017


This is an automated email from the git hooks/post-receive script.

fladi pushed a commit to branch debian/master
in repository python-asgi-ipc.

commit 05137c135bb02e16221e8254c4bc4d782225a04f
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Thu Jul 20 10:04:58 2017 +0200

    Add debug statement.
---
 asgi_ipc/store.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/asgi_ipc/store.py b/asgi_ipc/store.py
index 672a36d..326a3e4 100644
--- a/asgi_ipc/store.py
+++ b/asgi_ipc/store.py
@@ -25,6 +25,7 @@ class BaseMemoryStore(object):
     def __init__(self, path, memory_size):
         self.memory_size = memory_size
         self.path = path
+        print(path)
         self.semaphore = posix_ipc.Semaphore(path, flags=posix_ipc.O_CREAT, initial_value=1)
         self.memory = posix_ipc.SharedMemory(path, flags=posix_ipc.O_CREAT, size=self.memory_size)
         self.mmap = mmap.mmap(self.memory.fd, self.memory.size)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-asgi-ipc.git



More information about the Python-modules-commits mailing list