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
Get only the events that indicate a failure (e.g. FailsTask = true or ExitCode = 1) and show them through the error notifications, like it is done when we start an instance.
IMO the 2nd way is better because users normally are not interested in those events as long as everything runs fine.
Looks like it is even possible to categorize the task errors since the task event has SetupError, DriverError, etc fields.
The text was updated successfully, but these errors were encountered:
Right now if the allocation failed before starting (e.g. docker driver could not pull the image) users have no way to find out what actually happened.
Two suggestions on how to show it:
FailsTask = true
orExitCode = 1
) and show them through the error notifications, like it is done when we start an instance.IMO the 2nd way is better because users normally are not interested in those events as long as everything runs fine.
Looks like it is even possible to categorize the task errors since the task event has
SetupError
,DriverError
, etc fields.The text was updated successfully, but these errors were encountered: