v2.47.1 - ISQ query in OI file name when

PSN and Reactor is present
This commit is contained in:
2022-12-06 09:46:56 -07:00
parent bd33624130
commit 92b543feca
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, pcl.Description description, long breakAfter, long preWait)
internal static (long?, string) GetCommandText(string connectionString, Logistics logistics, pcl.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)