Skip to content

Commit

Permalink
typo: overlooked invalidate_existing param from refactor.
Browse files Browse the repository at this point in the history
  • Loading branch information
pbugni committed Aug 9, 2024
1 parent 0d44d4d commit 538394a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions portal/models/qb_timeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -1203,10 +1203,7 @@ def attempt_update(user_id, research_study_id):
success = False
for attempt in range(1, 6):
try:
attempt_update(
user_id=user_id,
research_study_id=research_study_id,
invalidate_existing=invalidate_existing)
attempt_update(user_id=user_id, research_study_id=research_study_id)
success = True
break
except ConnectionError as ce:
Expand Down

0 comments on commit 538394a

Please sign in to comment.