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 is because kubectl.exec calls execa but the assumption is probably that it calls our own spawn method which does indeed add the detail key to the error object.
Flagging this as a bug since it will result in an imprecise error message for the user.
The text was updated successfully, but these errors were encountered:
The
detail
key is never defined on the error object in the followingcatch
block:https://github.com/garden-io/garden/blob/master/garden-service/src/plugins/kubernetes/status.ts#L462-L485
This is because
kubectl.exec
callsexeca
but the assumption is probably that it calls our ownspawn
method which does indeed add thedetail
key to the error object.Flagging this as a bug since it will result in an imprecise error message for the user.
The text was updated successfully, but these errors were encountered: