Skip to content

Commit

Permalink
Raising instead of warning if cost could not be estimated
Browse files Browse the repository at this point in the history
  • Loading branch information
momchil-flex committed Dec 16, 2024
1 parent 053fa45 commit 2452f55
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions tidy3d/web/api/webapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -901,11 +901,8 @@ def estimate_cost(task_id: str, verbose: bool = True, solver_version: str = None
console.log(f" {fc_post:1.3f} FlexCredit of the total cost from post-processing.")
return task_info.estFlexUnit

log.warning(
"Could not get estimated cost! It will be reported during a simulation run in the "
"preprocessing step."
)
return None
# Something went wrong
raise WebError("Could not get estimated cost!")


@wait_for_connection
Expand Down

0 comments on commit 2452f55

Please sign in to comment.