Improved start-up behavior

This commit is contained in:
Thorsten Sommer 2025-06-02 15:07:15 +02:00
parent 97ddf58dcb
commit 26aeed692c
No known key found for this signature in database
GPG Key ID: B0B7E2FC074BF1F5

View File

@ -6,9 +6,6 @@ public static partial class PluginFactory
{ {
public static async Task<bool> TryDownloadingConfigPluginAsync(Guid configPlugId, string configServerUrl, CancellationToken cancellationToken = default) public static async Task<bool> TryDownloadingConfigPluginAsync(Guid configPlugId, string configServerUrl, CancellationToken cancellationToken = default)
{ {
if (!IS_INITIALIZED)
return false;
LOG.LogInformation($"Downloading configuration plugin with ID: {configPlugId} from server: {configServerUrl}"); LOG.LogInformation($"Downloading configuration plugin with ID: {configPlugId} from server: {configServerUrl}");
var tempDownloadFile = Path.GetTempFileName(); var tempDownloadFile = Path.GetTempFileName();
try try