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 f2d6d3c commit 0f0fc1aCopy full SHA for 0f0fc1a
src/KubernetesClient/StringQuotingEmitter.cs
@@ -11,7 +11,7 @@ public class StringQuotingEmitter : ChainedEventEmitter
11
{
12
// Patterns from https://yaml.org/spec/1.2/spec.html#id2804356
13
private static readonly Regex QuotedRegex =
14
- new Regex(@"^(\~|null|true|false|-?(0|[1-9][0-9]*)(\.[0-9]*)?([eE][-+]?[0-9]+)?)?$");
+ new Regex(@"^(\~|null|true|false|-?(0|[0-9]*)(\.[0-9]*)?([eE][-+]?[0-9]+)?)?$");
15
16
public StringQuotingEmitter(IEventEmitter next)
17
: base(next)
0 commit comments