Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/schema/schema_validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -909,8 +909,7 @@ def validate_priority_project(property_key, normalized_entity_type, request, exi
for priority_project in new_data_dict.get('priority_project_list'):
if priority_project not in allowed_priority_projects:
raise ValueError(f"Provided priority_project_list contains unrecognized value: {priority_project}. Allowed values are {', '.join(allowed_priority_projects)}. These are case-sensitive values.")
new_data_dict['priority_project_list'] = [project.upper() for project in new_data_dict['priority_project_list']]



####################################################################################################
## Internal Functions
Expand Down