This commit is contained in:
2025-08-06 15:00:59 +04:00
parent 23f658e76a
commit fc17607567
2 changed files with 2 additions and 2 deletions

View File

@@ -159,7 +159,7 @@ internal class Program
{ {
return (false, ex.Message); return (false, ex.Message);
} }
if (cntBillets > 15) if (cntBillets > 5)
{ {
return (false, $"Заготовок в стане - {cntBillets}"); return (false, $"Заготовок в стане - {cntBillets}");
} }

View File

@@ -81,7 +81,7 @@ public class RemovingBillets
{ {
ct.ThrowIfCancellationRequested(); ct.ThrowIfCancellationRequested();
await SendToRoll(product.ProductId, conn, ct); await SendToRoll(product.ProductId, conn, ct);
Thread.Sleep(5000); Thread.Sleep(10000);
} }
return true; return true;