Skip to content

Commit

Permalink
Omit old everest storage check for --new-run
Browse files Browse the repository at this point in the history
  • Loading branch information
yngve-sk committed Jan 31, 2025
1 parent b84543b commit 201c2c4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/everest/bin/everest_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@ async def run_everest(options):
options.config.output_dir
)

EverestStorage.check_for_deprecated_seba_storage(options.config.config_path)
if not options.new_run:
EverestStorage.check_for_deprecated_seba_storage(options.config.config_path)

server_state = everserver_status(everserver_status_path)
if server_is_running(*ServerConfig.get_server_context(options.config.output_dir)):
config_file = options.config.config_file
Expand Down

0 comments on commit 201c2c4

Please sign in to comment.