Selaa lähdekoodia

set default waiting time to 10 seconds when app shutting down.

master
yangxiaodong 7 vuotta sitten
vanhempi
commit
3c4e20caaa
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. +1
    -1
      src/DotNetCore.CAP/Processor/IProcessingServer.Cap.cs

+ 1
- 1
src/DotNetCore.CAP/Processor/IProcessingServer.Cap.cs Näytä tiedosto

@@ -77,7 +77,7 @@ namespace DotNetCore.CAP.Processor
_cts.Cancel();
try
{
_compositeTask.Wait((int)TimeSpan.FromSeconds(60).TotalMilliseconds);
_compositeTask.Wait((int)TimeSpan.FromSeconds(10).TotalMilliseconds);
}
catch (AggregateException ex)
{


Ladataan…
Peruuta
Tallenna