Skip to content
Snippets Groups Projects
Commit 005bea5d authored by Michael Davis's avatar Michael Davis
Browse files

Makes failing cta-catalogue-schema-verify non-fatal until issue #540 is fixed

parent 1608b961
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,8 @@ echo "Preparing CTA configuration for tests"
kubectl --namespace ${NAMESPACE} exec ctafrontend -- cta-catalogue-schema-verify /etc/cta/cta-catalogue.conf
if [ $? -ne 0 ]; then
echo "ERROR: failed to verify the catalogue DB schema"
exit 1
# Making this non-fatal until cta-catalogue-schema-verify is fixed (see issue #540)
#exit 1
fi
kubectl --namespace ${NAMESPACE} exec ctafrontend -- cta-catalogue-admin-user-create /etc/cta/cta-catalogue.conf --username ctaadmin1 -m "docker cli"
for ((i=0; i<${#TAPEDRIVES_IN_USE[@]}; i++)); do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment