Skip to content

Commit

Permalink
Marked app loop with daemon as true
Browse files Browse the repository at this point in the history
  • Loading branch information
sacOO7 committed Oct 3, 2023
1 parent 3b66b32 commit 5b83d0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ably/rest/rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def __init__(self, key: Optional[str] = None, token: Optional[str] = None,
self.__sync_enabled = options.sync_enabled
if self.__sync_enabled:
if options.loop is None:
self.__app_loop = AppEventLoop.create()
self.__app_loop = AppEventLoop.create(True)
else:
self.__app_loop = AppEventLoop(loop=options.loop)

Expand Down

0 comments on commit 5b83d0e

Please sign in to comment.