Skip to content

Commit

Permalink
Fix log message when existing inference service is found
Browse files Browse the repository at this point in the history
  • Loading branch information
deadlycoconuts committed Jan 16, 2024
1 parent 3a901ca commit 8012cd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/cluster/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ func (c *controller) Deploy(ctx context.Context, modelService *models.Service) (
return nil, errors.Wrapf(err, fmt.Sprintf("%v (%s)", ErrUnableToCreateInferenceService, isvcName))
}
} else {
log.Infof("found existing inference service %s: %v; skipping its creation")
log.Infof("found existing inference service %s; skipping its creation", isvcName)
}

if c.deploymentConfig.PodDisruptionBudget.Enabled {
Expand Down

0 comments on commit 8012cd3

Please sign in to comment.