Skip to content

Commit

Permalink
Store sync flag on config.
Browse files Browse the repository at this point in the history
  • Loading branch information
riga committed Oct 30, 2024
1 parent d9bebbd commit fd1063e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion hbt/config/configs_hbt.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,14 @@ def add_config(
procs = get_root_processes_from_campaign(campaign)

# create a config by passing the campaign, so id and name will be identical
cfg = od.Config(name=config_name, id=config_id, campaign=campaign)
cfg = od.Config(
name=config_name,
id=config_id,
campaign=campaign,
aux={
"sync": sync_mode,
},
)

################################################################################################
# helpers
Expand Down

0 comments on commit fd1063e

Please sign in to comment.