v2.47.1 - ISQ query in OI file name when

PSN and Reactor is present
This commit is contained in:
2022-12-06 09:45:53 -07:00
parent b2fd2a7600
commit 42cf4c2f73
2 changed files with 10 additions and 7 deletions

View File

@ -67,7 +67,7 @@ public class FromIQS
return stringBuilder;
}
internal static (long?, string) GetCommandText(long breakAfterSeconds, string connectionString, Logistics logistics, txt.Description description, long breakAfter, long preWait)
internal static (long?, string) GetCommandText(string connectionString, Logistics logistics, txt.Description description, long breakAfter, long preWait)
{
string dateTime;
string commandText;
@ -93,7 +93,8 @@ public class FromIQS
if (stringBuilder.Length > 0)
break;
if (DateTime.Now.Ticks > breakAfter)
throw new Exception($"After {breakAfterSeconds} seconds, didn't find sub group id!");
// throw new Exception($"After {breakAfterSeconds} seconds, didn't find sub group id!");
break;
Thread.Sleep(250);
}
if (stringBuilder.Length == 0)