TelemetryPublisherDisk: Allow reading of telemetry file by other processes
This commit is contained in:
parent
2166695fa0
commit
0932c1707f
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ namespace NucuCar.Domain.Telemetry
|
|||
var bufferSize = connectionStringParams.GetValueOrDefault("BufferSize", "4096");
|
||||
|
||||
_fileStream = new FileStream(fileName, FileMode.Append, FileAccess.Write,
|
||||
FileShare.None, int.Parse(bufferSize), true);
|
||||
FileShare.Read, int.Parse(bufferSize), true);
|
||||
Logger?.LogDebug("Initialized the TelemetryPublisherDisk!");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue