Skip to content

Commit 53e7443

Browse files
dido18lucarin91
andauthored
Update internal/orchestrator/bricks/bricks.go
Co-authored-by: Luca Rinaldi <[email protected]>
1 parent 1ada20c commit 53e7443

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/orchestrator/bricks/bricks.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ func (s *Service) BrickCreate(
192192
for name, reqValue := range req.Variables {
193193
value, exist := brick.GetVariable(name)
194194
if !exist {
195-
return fmt.Errorf("variable '%s' does not exist on brick '%s'", name, brick.ID)
195+
return fmt.Errorf("variable %q does not exist on brick %q", name, brick.ID)
196196
}
197197
if value.DefaultValue == "" && reqValue == "" {
198198
return fmt.Errorf("variable '%s' cannot be empty", name)

0 commit comments

Comments
 (0)