Skip to content

Commit 5c78b8d

Browse files
authored
Fix for OWLS-93641 - MII auxiliary image negative test case failure on OKD. (#2627)
1 parent 50514bd commit 5c78b8d

File tree

1 file changed

+1
-1
lines changed
  • operator/src/main/resources/scripts

1 file changed

+1
-1
lines changed

operator/src/main/resources/scripts/utils.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,7 @@ function checkAuxiliaryImage() {
715715
rm -f ${AUXILIARY_IMAGE_PATH}/testaccess.tmp || return 1
716716

717717
# The container .out files embed their container name, the names will sort in the same order in which the containers ran
718-
out_files=$(set -o pipefail ; ls -1 $AUXILIARY_IMAGE_PATH/auxiliaryImageLogs/*.out 2>1 | sort --version-sort) \
718+
out_files=$(set -o pipefail ; ls -1 $AUXILIARY_IMAGE_PATH/auxiliaryImageLogs/*.out 2>&1 | sort --version-sort) \
719719
|| (trace SEVERE "Auxiliary Image: Assertion failure. No files found in '$AUXILIARY_IMAGE_PATH/auxiliaryImageLogs/*.out" \
720720
&& return 1)
721721
severe_found=false

0 commit comments

Comments
 (0)