Merge pull request #122 from caleblanchard/master
Fix creation of url file
This commit is contained in:
Коммит
41cdf7170c
|
@ -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")]
|
||||
|
|
Загрузка…
Ссылка в новой задаче