William
William
I believe there is a misunderstanding of the purpose the `Name` field within the NRPT table. The code is placing the `Name` value into the `DnsSuffix` property of the `NameServer`...
When using the `where` filter with a single argument, the filter does not perform *truthy* comparisons. The equality comparison is performed with the property value controlling. https://github.com/sebastienros/fluid/blob/74cb7421a6400acb425fd7448552475f2f18178c/Fluid/Filters/ArrayFilters.cs#L156 Switching `itemValue` and...
I believe it would make sense that `GetExitCodeAsync`: https://github.com/dotnet/command-line-api/blob/a0782c85fd8f7aed16f46935998e9280c86ed2fb/src/System.CommandLine.NamingConventionBinder/CommandHandler.cs#L607 Should await any return object that is a descendant of the `Task` type. If the type is `Task` the `int` value...
If a rule's OnSuccess or OnFailure action's Context is not defined (resulting in a null value), during execution of the rule's action a NullReferenceException is thrown during the construction of...
I have a specific need to attach the IP address of the sender to events arriving with a specific API key. Providing a set of predefined values that could be...
The fsync operations performed in the code referenced below always result in an access denied result when performed on a Windows OS. https://github.com/hashicorp/raft-wal/blob/cc4505d4dd2ef9e4231aea3c7ec7851527e67f4d/metadb/metadb.go#L135-L145 A similar issue: https://support.hashicorp.com/hc/en-us/articles/27722437245715-Consul-Snapshot-Not-Supported-by-Windows Additional use of...