try uuid4 in case there is an issue with uuid1's sequence number (#1317)

Co-authored-by: Bill Blanke <wjb2002@flex.com>
This commit is contained in:
Gene Hoffman 2021-03-15 19:42:53 -07:00 committed by GitHub
parent 7289a6bedf
commit e6bdee5b05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -555,7 +555,7 @@ class WebSocketServer:
queue = request.get("queue", "default")
for k in range(count):
id = str(uuid.uuid1())
id = str(uuid.uuid4())
config = {
"id": id,
"size": size,