mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
Use sync Serialize when writing scheduled tasks to disk
This commit is contained in:
parent
1a92d94e92
commit
42bcf171d9
@ -178,7 +178,8 @@ namespace Emby.Server.Implementations.ScheduledTasks
|
||||
lock (_lastExecutionResultSyncLock)
|
||||
{
|
||||
using FileStream createStream = new FileStream(path, FileMode.Create, FileAccess.Write, FileShare.None);
|
||||
JsonSerializer.SerializeAsync(createStream, value, _jsonOptions);
|
||||
using Utf8JsonWriter jsonStream = new Utf8JsonWriter(createStream);
|
||||
JsonSerializer.Serialize(jsonStream, value, _jsonOptions);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -578,7 +579,8 @@ namespace Emby.Server.Implementations.ScheduledTasks
|
||||
|
||||
Directory.CreateDirectory(Path.GetDirectoryName(path));
|
||||
using FileStream createStream = new FileStream(path, FileMode.Create, FileAccess.Write, FileShare.None);
|
||||
JsonSerializer.SerializeAsync(createStream, triggers, _jsonOptions);
|
||||
using Utf8JsonWriter jsonWriter = new Utf8JsonWriter(createStream);
|
||||
JsonSerializer.Serialize(jsonWriter, triggers, _jsonOptions);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
Loading…
Reference in New Issue
Block a user