Tim Hess
Tim Hess
As far back as I can recall, this endpoint has been setup for GET out of the box, but there is an `AllowedVerbs` config property that _should_ allow the actuator...
Please let us know how that goes, we'd love a PR if you're able to get it working. I'm not sure it will work without reflection... Something like [what we...
I think the bulk of concerns with this issue have been resolved by addition and evolution of `.AddAllActuators`, if there are additional ideas for improvement here, please let us know
I initially thought this would be similar to what we have for RabbitMQ, but a large part of the reason we have connectors is to make it easier to consume...
As of 5d792a85e72728c3ecfd191ba9c32e3e0bf6843c it looks like there are 908 violations
This epic is not _dependent_ on #897 but is likely simpler afterwards.
This is already possible through the `Action` arg that is available on several extensions or by adding the startup filter more directly: ```csharp services.AddSingleton(new AllActuatorsStartupFilter(c => c.RequireHost("*:5010"))); ``` When we...
@dtillman, @hananiel Trying to change the [SimpleMessageConverter's ](https://github.com/SteeltoeOSS/Steeltoe/blob/master/src/Messaging/src/RabbitMQ/Support/Converter/SimpleMessageConverter.cs#L71)(de)serialization to use `System.Text.Json.JsonSerializer` results in the following exception being thrown in tests: ``` System.NotSupportedException : Serialization and deserialization of 'System.Type' instances are...
In my view, this feature is effectively providing support for working with [Service Catalog](https://kubernetes.io/docs/concepts/extend-kubernetes/service-catalog/) and various [open service broker api implementations](https://github.com/openservicebrokerapi/servicebroker/blob/master/gettingStarted.md#example-service-brokers) but I'm not clear on how in-demand this functionality...
@VenkateshSrini that (general) scenario should be supported by #304, provided you use the same config keys for values you want to override and add your config providers in the desired...