{#769) Fix problem with handle collisions when generated rapidly in Windows

This commit is contained in:
Veronica K. B. Olsen
2021-05-06 21:58:08 +02:00
parent 35458a7e37
commit 5797b8655d
+3 -1
View File
@@ -77,6 +77,7 @@ class NWTree():
self._treeChanged = False # True if tree structure has changed self._treeChanged = False # True if tree structure has changed
self._handleSeed = None # Used for generating handles for testing self._handleSeed = None # Used for generating handles for testing
self._handleCount = 0 # A counter that is added to the handle generator
return return
@@ -515,7 +516,8 @@ class NWTree():
handle requests come faster than the clock resolution. handle requests come faster than the clock resolution.
""" """
if self._handleSeed is None: if self._handleSeed is None:
newSeed = str(time()) + addSeed newSeed = "%s_%d_%s" % (str(time()), self._handleCount, addSeed)
self._handleCount += 1
else: else:
# This is used for debugging # This is used for debugging
newSeed = str(self._handleSeed) newSeed = str(self._handleSeed)