Skip to content

Commit

Permalink
fix(network): rename function for sending manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
yannickkirschen committed Jun 20, 2024
1 parent c446fee commit cd83947
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion network.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func HandleManifest(path string, pool *Pool, spec any, status any) {
}

// SendManifest sends a manifest to a given endpoint (blocking) and returns the new manifest.
func SendManifestSilent(endpoint string, manifest *Manifest, userAgent string) (*Manifest, error) {
func SendManifest(endpoint string, manifest *Manifest, userAgent string) (*Manifest, error) {
b, err := json.Marshal(manifest)
if err != nil {
return nil, err
Expand Down

0 comments on commit cd83947

Please sign in to comment.