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
Originally Java apps had an optional flag called <threadsafe>, but at some point this flag became mandatory. Since we don't check for its existence, users can give us an app without it and we will blindly accept it, causing the app to fail when AppScale tries to start up the Java AppServer.
Need to check for this tag, ensure that it's value is either true or false, and abort if it is not.
The text was updated successfully, but these errors were encountered:
Originally Java apps had an optional flag called
<threadsafe>
, but at some point this flag became mandatory. Since we don't check for its existence, users can give us an app without it and we will blindly accept it, causing the app to fail when AppScale tries to start up the Java AppServer.Need to check for this tag, ensure that it's value is either
true
orfalse
, and abort if it is not.The text was updated successfully, but these errors were encountered: