From 775d07f72f7401abeea42b3602cc514d2a58b07c Mon Sep 17 00:00:00 2001 From: Alessio Peternelli Date: Wed, 17 Jan 2018 08:35:16 +0000 Subject: [PATCH] Fix typo ... didn't had my coffee yet ... --- .../ServiceFabricDiagnosticPipelineFactory.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.Diagnostics.EventFlow.ServiceFabric/ServiceFabricDiagnosticPipelineFactory.cs b/src/Microsoft.Diagnostics.EventFlow.ServiceFabric/ServiceFabricDiagnosticPipelineFactory.cs index 93587870..bad082a2 100644 --- a/src/Microsoft.Diagnostics.EventFlow.ServiceFabric/ServiceFabricDiagnosticPipelineFactory.cs +++ b/src/Microsoft.Diagnostics.EventFlow.ServiceFabric/ServiceFabricDiagnosticPipelineFactory.cs @@ -18,8 +18,8 @@ namespace Microsoft.Diagnostics.EventFlow.ServiceFabric { public static class ServiceFabricDiagnosticPipelineFactory { - // The "name" capture group will math any combinatione of one or more "words" '\w', - // and separators as dot '.', underscore '_' (captured by \w). dash '-', colon ':', slash '/', and hash '#' + // The "" capture group will match any combination of, one or more, words '\w' + // and separators as: dot '.', underscore '_' (captured by \w), dash '\-', colon ':', slash '/', and hash '#'. public static readonly string FabricConfigurationValueReference = @"servicefabric:/(?
\w+)/(?[\w.\-:/#]+)"; public static readonly string FabricConfigurationFileReference = @"servicefabricfile:/(?.+)"; public const string DefaultConfigurationFileName = "eventFlowConfig.json";