Skip to content

Commit

Permalink
Fixing config for ConformanceTests to handle client registration
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronpowell committed Dec 9, 2024
1 parent 7a88f78 commit 4e854a8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ protected override void PopulateConfiguration(ConfigurationManager configuration
configuration.AddInMemoryCollection(
[
new KeyValuePair<string, string?>(CreateConfigKey("Aspire:OllamaSharp", key, "Endpoint"), endpoint),
new KeyValuePair<string, string?>($"ConnectionStrings:{key}", $"Endpoint={endpoint}")
new KeyValuePair<string, string?>($"ConnectionStrings:{key ?? "ollama"}", $"Endpoint={endpoint}")
]);
}

Expand Down

0 comments on commit 4e854a8

Please sign in to comment.