We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ada20c commit 53e7443Copy full SHA for 53e7443
internal/orchestrator/bricks/bricks.go
@@ -192,7 +192,7 @@ func (s *Service) BrickCreate(
192
for name, reqValue := range req.Variables {
193
value, exist := brick.GetVariable(name)
194
if !exist {
195
- return fmt.Errorf("variable '%s' does not exist on brick '%s'", name, brick.ID)
+ return fmt.Errorf("variable %q does not exist on brick %q", name, brick.ID)
196
}
197
if value.DefaultValue == "" && reqValue == "" {
198
return fmt.Errorf("variable '%s' cannot be empty", name)
0 commit comments