Update pkg/inference/models/manager.go

Signed-off-by: Emily Casey <emily.casey@docker.com>

Co-authored-by: Jacob Howard <jacob.howard@docker.com>
This commit is contained in:
Emily Casey 2025-04-17 14:44:08 -04:00 committed by GitHub
parent 5a2117a505
commit e607ddcc49
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -332,7 +332,7 @@ func (m *Manager) handleTagModel(w http.ResponseWriter, r *http.Request) {
}
// Respond with success.
w.WriteHeader(http.StatusOK)
w.WriteHeader(http.StatusCreated)
w.Write([]byte(fmt.Sprintf("Model %q tagged successfully with source %q", modelName, model)))
}