Fix creation of url file
This commit is contained in:
Родитель
eeba0b33ed
Коммит
8e19f78ac5
|
@ -323,7 +323,12 @@ Message Id: {dataMessage.MessageId}");
|
|||
|
||||
var logFilePath = Path.Combine(directoryName, Path.GetFileNameWithoutExtension(filePath) + ".url");
|
||||
|
||||
var linkUrl = await _httpClientHelper.GetExecutionSummaryPageUrl(messageId);
|
||||
var linkUrlResponse = await _httpClientHelper.GetExecutionSummaryPageUrl(messageId);
|
||||
var linkUrl = string.Empty;
|
||||
if (linkUrlResponse.IsSuccessStatusCode)
|
||||
{
|
||||
linkUrl = HttpClientHelper.ReadResponseString(linkUrlResponse);
|
||||
}
|
||||
|
||||
using (_streamWriter = new StreamWriter(logFilePath))
|
||||
{
|
||||
|
|
|
@ -8,7 +8,7 @@ Please download the following Quartz.NET server binaries and copy those files to
|
|||
* Quartz.Serialization.Json.dll
|
||||
* Topshelf.dll
|
||||
|
||||
This version of Recurring Integrations Scheduler requires Quartz.NET 3.0.6
|
||||
This version of Recurring Integrations Scheduler requires Quartz.NET 3.0.7
|
||||
Download zip archive from https://github.com/quartznet/quartznet/releases
|
||||
|
||||
|
||||
|
|
|
@ -2,4 +2,4 @@
|
|||
Licensed under the MIT License. */
|
||||
|
||||
using System.Reflection;
|
||||
[assembly: AssemblyVersion("3.2.2.0")]
|
||||
[assembly: AssemblyVersion("3.2.2.1")]
|
Загрузка…
Ссылка в новой задаче