Skip to content

Commit

Permalink
fix(dependencies): remove watchdog
Browse files Browse the repository at this point in the history
  • Loading branch information
vringar committed Oct 11, 2023
1 parent a11420b commit 6158ca5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,4 @@ dependencies:
- types-pyyaml==6.0.12.11
- types-redis==4.6.0.6
- types-tabulate==0.9.0.3
- watchdog==3.0.0
name: openwpm
3 changes: 2 additions & 1 deletion openwpm/task_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def __init__(
self.logging_server = MPLogger(
self.manager_params.log_path,
str(structured_storage_provider),
**self._logger_kwargs
**self._logger_kwargs,
)
self.manager_params.logger_address = self.logging_server.logger_address
self.logger = logging.getLogger("openwpm")
Expand Down Expand Up @@ -379,6 +379,7 @@ def _start_thread(
# Start command execution thread
args = (self, command_sequence)
thread = threading.Thread(target=browser.execute_command_sequence, args=args)
thread.name = f"BrowserManagerHandle-{browser.browser_id}"
browser.command_thread = thread
thread.daemon = True
thread.start()
Expand Down
1 change: 0 additions & 1 deletion scripts/environment-unpinned.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,3 @@ dependencies:
- domain-utils
- dataclasses-json
- tranco
- watchdog

0 comments on commit 6158ca5

Please sign in to comment.