release orchestrator v1 draft and build fixes
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
// Copyright (c) StellaOps. Licensed under AGPL-3.0-or-later.
|
||||
// </copyright>
|
||||
|
||||
using System.Globalization;
|
||||
using System.Text.Json;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Microsoft.Extensions.Options;
|
||||
@@ -179,7 +180,7 @@ public sealed class FileBasedJobSyncTransport : IJobSyncTransport
|
||||
BundleId = Guid.Parse(bundleIdProp.GetString()!),
|
||||
TenantId = tenantIdProp.GetString()!,
|
||||
SourceNodeId = nodeIdProp.GetString()!,
|
||||
CreatedAt = DateTimeOffset.Parse(createdAtProp.GetString()!),
|
||||
CreatedAt = DateTimeOffset.Parse(createdAtProp.GetString()!, CultureInfo.InvariantCulture),
|
||||
EntryCount = entryCount,
|
||||
SizeBytes = new FileInfo(file).Length
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user