Skip to content

Commit

Permalink
fix context endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderHeinSAP committed May 28, 2024
1 parent 128b5d0 commit 661b50a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schemaregistry/schemaregistry_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ func NewClient(conf *Config) (Client, error) {
// Returns a string slice containing all available contexts
func (c *client) GetAllContexts() ([]string, error) {
var result []string
err := c.restService.handleRequest(newRequest("GET", subject, nil), &result)
err := c.restService.handleRequest(newRequest("GET", context, nil), &result)

return result, err
}
Expand Down

0 comments on commit 661b50a

Please sign in to comment.