Commit 8b067d63 authored by Marco Mariani's avatar Marco Mariani Committed by Cédric de Saint Martin

equeue: cast str(timestamp) to please gdbm

Signed-off-by: default avatarCédric de Saint Martin <cedric.dsm@tiolive.com>

Conflicts:
	slapos/equeue/__init__.py
parent c19937c0
......@@ -90,7 +90,7 @@ class EqueueServer(SocketServer.ThreadingUnixStreamServer):
e.returncode,
e.output,
))
self.db[command] = timestamp
self.db[command] = str(timestamp)
def process_request_thread(self, request, client_address):
# Handle request
......
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