v2.47.1 - ISQ query in OI file name when

PSN and Reactor is present
This commit is contained in:
2022-12-06 10:02:30 -07:00
parent f6c6d9855e
commit 2ab1489909
2 changed files with 9 additions and 4 deletions

View File

@ -67,7 +67,7 @@ public class FromIQS
return stringBuilder;
}
internal static (long?, string) GetCommandText(long breakAfterSeconds, string connectionString, Logistics logistics, Stratus.Description description, long breakAfter, long preWait)
internal static (long?, string) GetCommandText(string connectionString, Logistics logistics, Stratus.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)