Skip to content

Commit

Permalink
'backend is missing in the build' error
Browse files Browse the repository at this point in the history
* is now fatal

Signed-off-by: Alex Aizman <[email protected]>
  • Loading branch information
alex-aizman committed Jan 19, 2024
1 parent 5f40850 commit 5ad58be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ais/target.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ func (t *target) _initBuiltin() error {
}
switch {
case len(notlinked) > 0:
nlog.Errorf("%s backends: enabled %v, disabled %v, missing in the build %v", t, enabled, disabled, notlinked)
return fmt.Errorf("%s backends: enabled %v, disabled %v, missing in the build %v", t, enabled, disabled, notlinked)
case len(disabled) > 0:
nlog.Warningf("%s backends: enabled %v, disabled %v", t, enabled, disabled)
default:
Expand Down

0 comments on commit 5ad58be

Please sign in to comment.