Skip to content

Commit d51a1d3

Browse files
authored
Merge branch 'main' into storage_multi_labels
2 parents 0446e7a + ce55a8c commit d51a1d3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

koku/api/report/queries.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1037,7 +1037,7 @@ def _order_by(self, data, order_fields):
10371037
field = field[1:]
10381038
if field in numeric_ordering:
10391039
sorted_data = sorted(
1040-
sorted_data, key=lambda entry: (entry[field] is None, entry[field]), reverse=reverse
1040+
sorted_data, key=lambda entry: (entry.get(field) is None, entry.get(field)), reverse=reverse
10411041
)
10421042
elif TAG_PREFIX in field:
10431043
tag_index = field.index(TAG_PREFIX) + len(TAG_PREFIX)

smoke_test.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ COMPONENTS="koku trino" # specific components to deploy (optional, default: all
88
IQE_PLUGINS="cost_management"
99
IQE_MARKER_EXPRESSION="cost_smoke"
1010
IQE_FILTER_EXPRESSION=""
11-
IQE_CJI_TIMEOUT="5h"
11+
IQE_CJI_TIMEOUT="6h"
1212
IQE_PARALLEL_ENABLED="false"
1313
IQE_ENV_VARS="JOB_NAME=${JOB_NAME},BUILD_NUMBER=${BUILD_NUMBER},SCHEMA_SUFFIX=_${BUILD_NUMBER}"
1414

@@ -22,7 +22,7 @@ curl -s $CICD_URL/bootstrap.sh > .cicd_bootstrap.sh && source .cicd_bootstrap.sh
2222
source ${CICD_ROOT}/_common_deploy_logic.sh
2323
set -x
2424
export BONFIRE_NS_REQUESTER="${JOB_NAME}-${BUILD_NUMBER}"
25-
export NAMESPACE=$(bonfire namespace reserve --duration 6h)
25+
export NAMESPACE=$(bonfire namespace reserve --duration 6h20m)
2626
SMOKE_NAMESPACE=$NAMESPACE
2727

2828
oc get secret koku-aws -o yaml -n ephemeral-base | grep -v '^\s*namespace:\s' | oc apply --namespace=${NAMESPACE} -f -

0 commit comments

Comments
 (0)