We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d18265 commit 96500c1Copy full SHA for 96500c1
flytepropeller/pkg/controller/nodes/task/handler.go
@@ -100,6 +100,9 @@ func (p *pluginRequestedTransition) RemoveDeckURIIfDeckNotExists(ctx context.Con
100
exists, err := reader.DeckExists(ctx)
101
if err != nil {
102
logger.Errorf(ctx, "Failed to check deck file existence. Error: %v", err)
103
+ if p.execInfo.OutputInfo != nil {
104
+ p.execInfo.OutputInfo.DeckURI = nil
105
+ }
106
p.execInfo.OutputInfo.DeckURI = nil
107
return regErrors.Wrapf(err, "failed to check existence of deck file")
108
}
0 commit comments