Skip to content
Snippets Groups Projects
Commit b495b763 authored by Benjamin Bertrand's avatar Benjamin Bertrand
Browse files

Fix temporary ics_id generation

- The query to retrieve used ICS ids was run at each iteration of the
  loop...
- Use a set to quickly test the existence of used ICS ids
parent 5740f93b
No related branches found
No related tags found
No related merge requests found
...@@ -49,17 +49,18 @@ def temporary_ics_ids(): ...@@ -49,17 +49,18 @@ def temporary_ics_ids():
def used_temporary_ics_ids(): def used_temporary_ics_ids():
"""Generator that returns the list of temporary ICS ids used""" """Return a set with the temporary ICS ids used"""
temporary_items = Item.query.filter( temporary_items = Item.query.filter(
Item.ics_id.startswith( Item.ics_id.startswith(
current_app.config['TEMPORARY_ICS_ID'])).all() current_app.config['TEMPORARY_ICS_ID'])).all()
return (item.ics_id for item in temporary_items) return {item.ics_id for item in temporary_items}
def get_temporary_ics_id(): def get_temporary_ics_id():
"""Return a temporary ICS id that is available""" """Return a temporary ICS id that is available"""
used_temp_ics_ids = used_temporary_ics_ids()
for ics_id in temporary_ics_ids(): for ics_id in temporary_ics_ids():
if ics_id not in used_temporary_ics_ids(): if ics_id not in used_temp_ics_ids:
return ics_id return ics_id
else: else:
raise ValueError('No temporary ICS id available') raise ValueError('No temporary ICS id available')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment