Skip to content

Commit

Permalink
Remove unused json property "restore"
Browse files Browse the repository at this point in the history
  • Loading branch information
stephdl committed May 30, 2024
1 parent 056103d commit b486e54
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion imageroot/actions/clone-module/50configure-module
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ configure_retval = agent.tasks.run(agent_id=os.environ['AGENT_ID'], action='conf
"lets_encrypt": os.environ["TRAEFIK_LETS_ENCRYPT"] == 'True',
"host": os.environ["TRAEFIK_HOST"],
"http2https": os.environ["TRAEFIK_HTTP2HTTPS"] == 'True',
"restore": True,
"retention_days": int(os.environ["RETENTION_DAYS"]),
})
agent.assert_exp(configure_retval['exit_code'] == 0, "The configure-module subtask failed!")
1 change: 0 additions & 1 deletion imageroot/actions/restore-module/50configure-module
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ configure_retval = agent.tasks.run(agent_id=os.environ['AGENT_ID'], action='conf
"lets_encrypt": renv["TRAEFIK_LETS_ENCRYPT"] == 'True',
"host": renv["TRAEFIK_HOST"],
"http2https": renv["TRAEFIK_HTTP2HTTPS"] == 'True',
"restore": True,
'retention_days': int(renv['RETENTION_DAYS']),
})
agent.assert_exp(configure_retval['exit_code'] == 0, "The configure-module subtask failed!")

0 comments on commit b486e54

Please sign in to comment.