From 2440ccb8b98f6b3d24c3a6a65106c458b8a3859e Mon Sep 17 00:00:00 2001 From: Ralf Haferkamp Date: Mon, 27 May 2024 10:21:28 +0200 Subject: [PATCH] fix(autoprovision): fixup the service name of the graph service This is a fixup for commit 799b12b8dda00d860ad91a7143a8e06b2096d218 adjusting the service name of the graph service to the new value. Closes: #9258 --- services/proxy/pkg/user/backend/cs3.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/proxy/pkg/user/backend/cs3.go b/services/proxy/pkg/user/backend/cs3.go index 38c3b76ccb..28e4525618 100644 --- a/services/proxy/pkg/user/backend/cs3.go +++ b/services/proxy/pkg/user/backend/cs3.go @@ -282,7 +282,7 @@ func (c cs3backend) updateLibregraphUser(userid string, user libregraph.User) er func (c cs3backend) setupLibregraphClient(ctx context.Context, cs3token string) (*libregraph.APIClient, error) { // Use micro registry to resolve next graph service endpoint - next, err := c.graphSelector.Select("com.owncloud.graph.graph") + next, err := c.graphSelector.Select("com.owncloud.web.graph") if err != nil { c.logger.Debug().Err(err).Msg("setupLibregraphClient: error during Select") return nil, err