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.
2 parents 93bd426 + dbb7823 commit 3e04d42Copy full SHA for 3e04d42
FlinkDotNet/FlinkDotNet.JobGateway/Services/FlinkJobManager.cs
@@ -224,9 +224,11 @@ private static string NormalizeFlinkJobId(string jobId)
224
}
225
226
string hexOnly = s_hexOnlyRegex.Replace(jobId, string.Empty);
227
+#pragma warning disable S4040 // Lowercase normalization is required for Flink job ID compatibility
228
return hexOnly.Length != 32
229
? throw new ArgumentException($"Flink JobId must contain exactly 32 hexadecimal characters (received '{jobId}').", nameof(jobId))
230
: hexOnly.ToLowerInvariant();
231
+#pragma warning restore S4040
232
233
234
private async Task WaitForSqlGatewayReadyAsync(HttpClient client)
0 commit comments