This commit is contained in:
Caleb Blanchard 2020-11-04 12:23:59 -05:00
Родитель eeba0b33ed
Коммит 8e19f78ac5
3 изменённых файлов: 8 добавлений и 3 удалений

Просмотреть файл

@ -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")]