Skip to content

Commit 8434a69

Browse files
authored
Merge 21c6935 into 38f717d
2 parents 38f717d + 21c6935 commit 8434a69

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

cumulus_lambda_functions/lib/uds_db/uds_collections.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,10 @@ def get_collections(self, collection_regex: list):
107107
'query': {
108108
'bool': {
109109
'should': [
110-
{'regexp': {DBConstants.collection_id: k}} for k in collection_regex
110+
{'regexp': {DBConstants.collection_id: {
111+
'value': k,
112+
'case_insensitive': True
113+
}}} for k in collection_regex
111114
]
112115
}
113116
},

0 commit comments

Comments
 (0)