Merge pull request #122 from caleblanchard/master

Fix creation of url file
This commit is contained in:
Tomek Melissa 2021-05-07 16:18:27 +02:00 коммит произвёл GitHub
Родитель 7418c5be3d d0989562f9
Коммит 41cdf7170c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 8 добавлений и 2 удалений

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

@ -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))
{

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

@ -5,6 +5,7 @@ Please download the following Quartz.NET server binaries and copy those files to
* bin\Release\Quartz.Server\net461\Quartz.Server.exe
This version of Recurring Integrations Scheduler requires Quartz.NET 3.2.4
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.3.0.0")]
[assembly: AssemblyVersion("3.3.0.0")]