You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Build completed. Visit http://localhost:9999/biotestmine to access your mine. is always shown when intermine_builder exits. We should check for errors and replace this message with a more appropriate one when things fail.
Checking the exit code might not be enough, as I once got this when gradle failed:
b'2020-07-16T10:31:05.874461487Z ERROR: 256\n'
b'2020-07-16T10:31:05.874469812Z failed with exit code 0: /home/intermine/intermine/biotestmine/gradlew --stacktrace --no-daemon builddb\n'
b'2020-07-16T10:31:05.874478152Z \n'
b'2020-07-16T10:31:05.874486280Z check log: pbuild.log\n'
Build completed. Visit http://localhost:9999/biotestmine to access your mine.
failed with exit code 0 sounds like it exits with code 0, which means nothing is wrong! This means we can't rely on the exit code of intermine_builder, so we'll have to check the log strings (hopefully ERROR will be enough).
The text was updated successfully, but these errors were encountered:
Build completed. Visit http://localhost:9999/biotestmine to access your mine.
is always shown when intermine_builder exits. We should check for errors and replace this message with a more appropriate one when things fail.Checking the exit code might not be enough, as I once got this when gradle failed:
failed with exit code 0
sounds like it exits with code 0, which means nothing is wrong! This means we can't rely on the exit code of intermine_builder, so we'll have to check the log strings (hopefullyERROR
will be enough).The text was updated successfully, but these errors were encountered: