Commit 450a34ee authored by Barry Warsaw's avatar Barry Warsaw

Environment.__init__(): ZEO_SERVER.pid should live in the var

directory, so it should be joined to self.var, not the local variable
`v'.
parent 6640b1b1
......@@ -44,7 +44,7 @@ class Environment:
pid = os.environ.get("ZEO_SERVER_PID")
if pid is None:
pid = os.path.join(v, "ZEO_SERVER.pid")
pid = os.path.join(self.var, "ZEO_SERVER.pid")
self.zeo_pid = pid
self.fs = os.path.join(self.var, "Data.fs")
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment