Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
Refs: #1172
  • Loading branch information
Phil91 committed Nov 26, 2024
1 parent ed71ac3 commit 7b1ef43
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public Task UpdateClients(string keycloakInstanceName, CancellationToken cancell
var seederConfig = seedDataHandler.GetSpecificConfiguration(ConfigurationKey.Clients);
var clientScopesSeederConfig = seedDataHandler.GetSpecificConfiguration(ConfigurationKey.ClientScopes);

return seedDataHandler.SetClientInternalIds(UpdateClientsInternal(keycloak, realm, seederConfig, clientScopesSeederConfig, cancellationToken).Where(x => x != null).Select(x => x!.Value));
return seedDataHandler.SetClientInternalIds(UpdateClientsInternal(keycloak, realm, seederConfig, clientScopesSeederConfig, cancellationToken));
}

private async IAsyncEnumerable<(string ClientId, string Id)> UpdateClientsInternal(KeycloakClient keycloak, string realm, KeycloakSeederConfigModel seederConfig, KeycloakSeederConfigModel clientScopesSeederConfig, [EnumeratorCancellation] CancellationToken cancellationToken)
Expand Down

0 comments on commit 7b1ef43

Please sign in to comment.