Skip to content

Commit

Permalink
add a success log on completion
Browse files Browse the repository at this point in the history
  • Loading branch information
codingkarthik committed Aug 1, 2024
1 parent ec62c9f commit d5111d7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions registry-automation/cmd/ci.go
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,8 @@ func runCI(cmd *cobra.Command, args []string) {
log.Fatalf("Failed to update the registry: %v", err)
}
}

fmt.Println("Successfully added connector versions to the registry.")
}

func cleanupUploadedConnectorVersions(client *storage.Client, connectorVersions []ConnectorVersion) error {
Expand Down Expand Up @@ -452,8 +454,5 @@ mutation InsertConnectorVersion($connectorVersion: [hub_registry_connector_versi
return err
}

// print the respData
fmt.Println("Response from the API: ", respData)

return nil
}

0 comments on commit d5111d7

Please sign in to comment.