diff --git a/Program.cs b/Program.cs index 3d4a312..d5303be 100644 --- a/Program.cs +++ b/Program.cs @@ -159,7 +159,7 @@ internal class Program { return (false, ex.Message); } - if (cntBillets > 15) + if (cntBillets > 5) { return (false, $"Заготовок в стане - {cntBillets}"); } diff --git a/RemovingBillets.cs b/RemovingBillets.cs index b90d7aa..a1ce59c 100644 --- a/RemovingBillets.cs +++ b/RemovingBillets.cs @@ -81,7 +81,7 @@ public class RemovingBillets { ct.ThrowIfCancellationRequested(); await SendToRoll(product.ProductId, conn, ct); - Thread.Sleep(5000); + Thread.Sleep(10000); } return true;