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 e23f16e commit 2283072Copy full SHA for 2283072
src/Elastic.Elasticsearch.Managed/ConsoleWriters/LineOutParser.cs
@@ -64,7 +64,7 @@ public static bool TryParse(string line,
64
private static bool TryGetStartedConfirmation(string section, string message)
65
{
66
var inNodeSection = section == "o.e.n.Node" || section == "node";
67
- return inNodeSection && message == "started";
+ return inNodeSection && (message == "started" || message.StartsWith("started {", StringComparison.Ordinal));
68
}
69
70
public static bool TryGetPortNumber(string section, string message, out int port)
0 commit comments