Correctly increment the _next_id initially

This commit is contained in:
Erik Johnston 2015-04-14 09:54:44 +01:00
parent 86fc9b617c
commit 3c741682e5

View File

@ -55,9 +55,11 @@ class IdGenerator(object):
)
val, = txn.fetchone()
self._next_id = val or 2
cur = val or 0
cur += 1
self._next_id = cur + 1
return 1
return cur
class StreamIdGenerator(object):