Skip to content

Commit

Permalink
feat: ajout nettoyge interrogation en cours avec interruption volonta…
Browse files Browse the repository at this point in the history
…ire Ctrl+C
  • Loading branch information
rv2931 committed Jan 7, 2025
1 parent f0c09de commit 0c138f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/bloom/tasks/load_spire_data_from_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ def run(dump_path: str) -> None:
)
# Vu que l'on a enregistré et commité en bdd une ligne pour signalter qu'une
# instance load_spire_data_from_api était en cours
# en cas d'erreur, on supprime la ligne en cours
# en cas d'erreur ou d'interruption volontaire, on supprime la ligne en cours
# cela permettra aux autres instances de se lancer
except Exception as e:
except (KeyboardInterrupt,Exception) as e:
TaskExecutionRepository.remove_point_in_time(session,
"load_spire_data_from_api",
current_datetime)
Expand Down

0 comments on commit 0c138f4

Please sign in to comment.