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
Right now, we call System.exit when we are loading a class that does not belong to the index. This results in exiting the program. However, this is not a good approach for applications running on cloud.
I propose that instead of calling System.exit, we rewrite the bytecode so that it simply logs it to STDOUT. This way we don't exit the program and continue the execution.
The text was updated successfully, but these errors were encountered:
Right now, we call
System.exit
when we are loading a class that does not belong to the index. This results in exiting the program. However, this is not a good approach for applications running on cloud.I propose that instead of calling
System.exit
, we rewrite the bytecode so that it simply logs it to STDOUT. This way we don't exit the program and continue the execution.The text was updated successfully, but these errors were encountered: