File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
src/Elasticsearch.Net/Auditing Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,10 @@ public enum AuditEvent
29
29
NoNodesAttempted ,
30
30
CancellationRequested ,
31
31
FailedOverAllNodes ,
32
+
33
+ ProductCheckOnStartup ,
34
+ ProductCheckSuccess ,
35
+ ProductCheckFailure
32
36
}
33
37
34
38
internal static class AuditEventExtensions
@@ -61,11 +65,11 @@ public static string GetAuditDiagnosticEventName(this AuditEvent @event)
61
65
case NoNodesAttempted : return nameof ( NoNodesAttempted ) ;
62
66
case CancellationRequested : return nameof ( CancellationRequested ) ;
63
67
case FailedOverAllNodes : return nameof ( FailedOverAllNodes ) ;
68
+ case ProductCheckOnStartup : return nameof ( ProductCheckOnStartup ) ;
69
+ case ProductCheckSuccess : return nameof ( ProductCheckSuccess ) ;
70
+ case ProductCheckFailure : return nameof ( ProductCheckFailure ) ;
64
71
default : return @event . GetStringValue ( ) ; //still cached but uses reflection
65
72
}
66
73
}
67
-
68
-
69
74
}
70
-
71
75
}
You can’t perform that action at this time.
0 commit comments