Skip to content

Commit c0d933a

Browse files
authored
Merge 12050f7 into 935bca1
2 parents 935bca1 + 12050f7 commit c0d933a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/dockerbuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
uses: docker/setup-buildx-action@v1
4646
-
4747
name: Cache Docker layers
48-
uses: actions/cache@v2
48+
uses: actions/cache@v4
4949
with:
5050
path: /tmp/.buildx-cache
5151
key: ${{ runner.os }}-buildx-${{ github.sha }}

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)