Skip to content

Commit

Permalink
Fix existing sample priority
Browse files Browse the repository at this point in the history
  • Loading branch information
islean committed Jan 27, 2025
1 parent 9b90095 commit 1c875c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cg/services/orders/submitter/ticket_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def add_existing_sample_info_to_message(
sample_customer = ""
if existing_sample.customer_id != customer_id:
sample_customer = " from " + existing_sample.customer.internal_id
message += f"{existing_sample.name}, application: {existing_sample.application_version.application.tag}, case: {case_name} (already existing sample{sample_customer}), priority: {existing_sample.priority}"
message += f"{existing_sample.name}, application: {existing_sample.application_version.application.tag}, case: {case_name} (already existing sample{sample_customer}), priority: {existing_sample.priority.name.lower()}"
return message

@staticmethod
Expand Down

0 comments on commit 1c875c5

Please sign in to comment.