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
This means if for example console bulk commands are used in a Dockerfile and those contain an error the container image build still passes.
Hint: Console.java only contains System.exit(0); maybe the exist status needs to be an attribute of the Console class and set if an exception is caught?
The text was updated successfully, but these errors were encountered:
gramian
changed the title
[Console] Error in bulk mode does not cause return value to be non-zero
[Console] Error in bulk mode does not cause exit status to be non-zero
Mar 12, 2025
ArcadeDB Server v25.3.1 (build d86c5c504da14112a6e81cdb6efbc85567137aca/1741368384948/main)
Running on Linux 6.2.0-26-generic - OpenJDK 64-Bit Server VM 17.0.14
Running a commands in bulk mode in the console of which one causes an error still leads to a zero return value.
This example returns
0
instead of1
signaling an error:This means if for example console bulk commands are used in a Dockerfile and those contain an error the container image build still passes.
Hint:
Console.java
only containsSystem.exit(0)
; maybe the exist status needs to be an attribute of the Console class and set if an exception is caught?The text was updated successfully, but these errors were encountered: