Matt Thornton
Matt Thornton
Hi @andrewvk could you point me to the bit in the code where it's explicitly specified? I've not looked at this library for a while so I'm a bit rusty,...
Ah OK, I remember now. This wasn't exactly deliberate as just being defensive about avoiding a `NullReferenceException`. Clearly `HasValue()` should be telling us to remove the key from the local...
Ah yes I remember that behaviour now from when I originally wrote this one. Good idea. Let's go for that. Should be pretty straightforward to fix now then. 👍
@davidalpert I believe you are correct. This would break the `ConsulConfigurationSource` interface as you mentioned. I hadn't put a lot of thought in this yet as I was going to...
@kewinbrand Thanks for that. I actually came across it myself today funnily enough. I’ll review it and have a think. Partly I think the removal of a dependency is worth...
Hi @TechGeeky, From a quick glance at your code it looks like you've made a mistake with the `Parser` option you've chosen when calling `AddConsul`. You've set the parser as...
> No, it doesn't. > You are getting that error because the `runValidations` is not inline, and it has to have the `inline` modifier because it has a static requirement...
FWIW I've just got the following fairly generic version working ```fsharp type ApplicativeBuilder() member inline _.BindReturn(x, f) = map f x let applicative = ApplicativeBuilder() ``` and using it like...
It's VS Code. Here's the table definition for reference. ```sql CREATE TABLE `foo` ( `id` int NOT NULL AUTO_INCREMENT `name` varchar(50) NOT NULL, `description` varchar(50) NOT NULL, `type` enum('A', 'B')...
Just wondering what the status of this is now? I'm trying to use `Node.Crypto` for example and it seems like the types are there in the `IExports` object (well at...