Skip to content

Commit

Permalink
re-enable usage tracking by default
Browse files Browse the repository at this point in the history
  • Loading branch information
svandenhaute committed Sep 26, 2024
1 parent 0bd8eaf commit 73fe1b0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion psiflow/execution.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ def create_executor(self, path: Path, **kwargs) -> ParslExecutor:
worker_options.append("--idle-timeout={}".format(20))

executor = MyWorkQueueExecutor(
address='127.0.0.1',
label=self.name,
working_dir=str(path / self.name),
provider=self.parsl_provider,
Expand Down Expand Up @@ -445,7 +446,7 @@ def from_config(
cls,
path: Optional[Union[str, Path]] = None,
parsl_log_level: str = "WARNING",
usage_tracking: bool = True,
usage_tracking: int = 3,
retries: int = 2,
strategy: str = "simple",
max_idletime: float = 20,
Expand Down

0 comments on commit 73fe1b0

Please sign in to comment.