nicolas.dorier 2018-01-18 17:21:29 +09:00
parent c88f391935
commit b47b4b10cb
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<Version>1.0.1.3</Version>
<Version>1.0.1.4</Version>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Build\dockerfiles\**" />

View File

@ -489,10 +489,10 @@ namespace BTCPayServer.HostedServices
}
catch (Exception ex) when (!cancellation.IsCancellationRequested)
{
Logs.PayServer.LogCritical(ex, $"Error in the InvoiceWatcher loop (Invoice {item})");
Logs.PayServer.LogCritical(ex, $"Error in the InvoiceWatcher loop (Invoice {i})");
await Task.Delay(2000, cancellation);
}
finally { executing.TryRemove(item, out Task useless); }
finally { executing.TryRemove(i, out Task useless); }
});
}
}