make ID Management skippable for MTBA

This commit is contained in:
p.delpy@dkfz-heidelberg.de 2023-06-15 11:02:59 +02:00
parent 71fea9f098
commit 019304862e
1 changed files with 4 additions and 4 deletions

View File

@ -15,10 +15,10 @@ function mtbaSetup() {
# TODO: Check if ID-Management Module is activated!
if [ -n "$ENABLE_MTBA" ];then
log INFO "MTBA setup detected -- will start MTBA Service and CBioPortal."
if [ ! -n "$IDMANAGER_UPLOAD_APIKEY" ]; then
log ERROR "Detected MTBA Module configuration but ID-Management Module seems not to be configured!"
exit 1;
fi
# if [ ! -n "$IDMANAGER_UPLOAD_APIKEY" ]; then
# log ERROR "Detected MTBA Module configuration but ID-Management Module seems not to be configured!"
# exit 1;
# fi
OVERRIDE+=" -f ./$PROJECT/mtba-compose.yml"
fi
}