devklick

Results 13 comments of devklick
trafficstars

I've made a start on this an have the basic POC working, allowing AWS configuration (the region & profile) and the secrets manager configuration (ARN list, filters, polling interval) to...

One thing I forgot to mention is that I've introduced two new package dependencies as part of this work: - `AWSSDK.Extensions.NETCore.Setup` This is used for getting the AWS config section,...

I've been really struggling writing unit tests that cover this new functionality. Mocking the various `IConfiguration*` interfaces to return the appropriate values, for the SUT to then bind these to...

The problem I was hitting when using the concrete type for configuration was verifying that the `SecretsManagerConfigurationSource` had been added (and the contents of course). We cant hook into the...

I cant get the example from the readme to compile, and I think the problem is related to the namespace issue mentioned here. ```csharp BCrypt.Verify("my password", "passwordHash"); ``` Error: >The...

It compiles OK if you create the union and the litterals in a single line, e.g. ```ts const fruitUnion = z.union([z.literal('apple'), z.literal('banana')]); // type: z.ZodUnion ``` However as soon as...

Just to expand on my previous comment, it _does_ compile if you specify the type as a tuple with ZodLitteral types, e.g: ```ts const fruitValuesLiterals: [z.ZodLiteral, z.ZodLiteral] = [z.literal('apple'), z.literal('banana')];...

@PabloLION Thanks for clarifying. Can you elaborate on your workaround? Not sure what you mean by expanding the loop.

It looks like the request actually _is_ being sent, as when making the request when against an invalid target API I get a toaster error pop up: >The connection was...

@SwankyLynx From what I recall, the request wasnt actually reaching my code, so there was nothing to catch. I also had request/response logging set up, and none of that was...