Skip to content

Commit

Permalink
fix: status code 200
Browse files Browse the repository at this point in the history
  • Loading branch information
cka-y committed Apr 23, 2024
1 parent 89cc7e7 commit 47c5c36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions-python/validation_report_processor/src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def create_validation_report_entities(feed_stable_id, dataset_stable_id):
feed_stable_id,
)
except Exception as error:
return str(error), 409 # Conflict if report already exists
return str(error), 200 # Report already exists

# Commit the entities to the database
for entity in entities:
Expand Down

0 comments on commit 47c5c36

Please sign in to comment.