Skip to content

Commit

Permalink
Merge pull request #52 from MykytaPanoply/ds-3139_bg_progress_timeout
Browse files Browse the repository at this point in the history
[DS-3139] Add timeout to background progress: Fixed error with renaming variable
  • Loading branch information
MykytaPanoply authored Feb 1, 2023
2 parents a0295d4 + 376f011 commit 4114e54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panoply/datasource.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def _background_progress(func):
def wrapper(*args, **kwargs):
self = args[0]
self.log('Creating background progress emitter')
self.log(f'Timeout is set to {max_wait} seconds')
self.log(f'Timeout is set to {timeout} seconds')
finished = Event()
started_at = time()
with ThreadPoolExecutor(max_workers=1) as executor:
Expand Down

0 comments on commit 4114e54

Please sign in to comment.