Skip to content

Commit

Permalink
Unconditionally start session delivery
Browse files Browse the repository at this point in the history
  • Loading branch information
imjoehaines committed Dec 4, 2023
1 parent 5c035d9 commit f6006a1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions bugsnag/sessiontracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,8 @@ def __init__(self, configuration):
self.delivery_thread = None

def start_session(self):
if not self.auto_sessions and self.config.auto_capture_sessions:
self.auto_sessions = True
self.__start_delivery()
self.__start_delivery()

start_time = strftime('%Y-%m-%dT%H:%M:00', gmtime())
new_session = {
'id': uuid4().hex,
Expand Down

0 comments on commit f6006a1

Please sign in to comment.