We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5985246 commit a296597Copy full SHA for a296597
src/Infrastructures/Consul/Configuration/DefaultConsulConfigurationProvider.cs
@@ -23,7 +23,10 @@ private void LoadData(QueryResult<KVPair> queryResult)
23
|| queryResult.Response.Value == null
24
|| queryResult.Response.Value.Length == 0)
25
{
26
- Data = new Dictionary<string, string?>();
+ Data = new Dictionary<string, string?>()
27
+ {
28
+ { "nullContent",""}
29
+ };
30
return;
31
}
32
Stream stream = new MemoryStream(queryResult.Response.Value);
0 commit comments