We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tools.WorkingDayService/src/Tools.WorkingDayService/FileSource/FileNonWorkingDaySource.cs
Line 44 in 87eb230
The text was updated successfully, but these errors were encountered:
File Watcher will also not work without enabling events.
Suggested change:
_fileWatcher = new FileSystemWatcher( Path.GetDirectoryName(filePath) ?? string.Empty, Path.GetFileName(filePath)); { EnableRaisingEvents = true, };
Sorry, something went wrong.
The file watcher's current event handler will fail when the file is modified in-place with most text editors, due to file locking issues.
The implementation should be updated to handle failures and attempt to retry:
https://github.com/qphl/order-manager/blob/master/orders-service/Permissions/JsonFilePermissionRepository.cs https://github.com/qphl/pharmaxo-patient-management/blob/d4305bd388db9931baab81684254bad03a2c4cf5/src/PharmaxoPatientManagement/PharmaxoPatientManagement.WebModulesHost/WebModulesHostBootstrapper.cs#L484
No branches or pull requests
Tools.WorkingDayService/src/Tools.WorkingDayService/FileSource/FileNonWorkingDaySource.cs
Line 44 in 87eb230
The text was updated successfully, but these errors were encountered: