Bart Koelman

Results 122 comments of Bart Koelman

After the merge of #1280, this can be accomplished in the following way: ```c# WebApplicationBuilder builder = WebApplication.CreateBuilder(); builder.Services.AddEurekaDiscoveryClient(); await using WebApplication app = builder.Build(); var appManager = app.Services.GetRequiredService(); Dictionary...

Yes, that would solve my use case. We use this for assertions on the exact text of formatted log output (so casing, whitespace, and line breaks must match exactly). Running...

> Wondering whether enabling IgnoringAllNewlines means that "cashew nuts" and cash\r\new nuts are considered equivalent. I agree. If there's such a need, probably introduce `IgnoreLeadingAndTrailingWhitespace` for that.

Thanks for the fix, this is working correctly now.

Query: https://github.com/search?q=repo%3ASteeltoeOSS%2FSteeltoe+%22Skip+%3D+%22&type=code

This was closed, while not everything was addressed. How about these? - https://github.com/SteeltoeOSS/Steeltoe/blob/50ede426e23d3d7748f40c5793a1b0feedf8e092/src/Configuration/test/ConfigServer.Integration.Test/ConfigServerConfigurationExtensionsIntegrationTest.cs#L190 - https://github.com/SteeltoeOSS/Steeltoe/blob/50ede426e23d3d7748f40c5793a1b0feedf8e092/src/Configuration/test/ConfigServer.Integration.Test/ConfigServerConfigurationExtensionsIntegrationTest.cs#L272

Consider adding an extension method to set up `IApplicationInstanceInfo`. See the conversation at https://github.com/SteeltoeOSS/Samples/pull/331#discussion_r1646201252.

@TimHess In our current testing environment, the following GCP plans are available: ``` > cf marketplace -e csb-google-postgres Getting service plan information for service offering csb-google-postgres in org engineering /...

I'm pretty confident this works as expected, after #1280 has been merged. I've added a test to verify: ```c# [Fact] public async Task ExplicitlyConfiguredIPAddressIsPreserved() { var appSettings = new Dictionary...