Skip to content

Commit 6dea0db

Browse files
authored
Merge pull request #9313 from jackyalbo/jacky_5.19-nc_fixes
Removing max-days check for ceph-tests in 5.19
2 parents 616f74b + 40c4e28 commit 6dea0db

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

src/test/system_tests/ceph_s3_tests/test_ceph_s3_deploy.sh

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,3 @@ if [ ! -d $DIRECTORY ]; then
3434
sed -i 's/bucket_name = \"test\"/bucket_name = get_new_bucket_name()/g' ./s3tests_boto3/functional/test_s3select.py
3535
fi
3636

37-
commit_epoch=$(git show -s --format=%ci ${CEPH_TESTS_VERSION} | awk '{print $1}')
38-
commit_date=$(date -d ${commit_epoch} +%s)
39-
current_date=$(date +%s)
40-
41-
max_days="600"
42-
if [ $((current_date-commit_date)) -gt $((3600*24*${max_days})) ]
43-
then
44-
echo "ceph tests were not updated for ${max_days} days, Exiting"
45-
exit 1
46-
fi

0 commit comments

Comments
 (0)