Skip to content

Commit e562a97

Browse files
fixing timeout error
1 parent e71e197 commit e562a97

5 files changed

Lines changed: 6 additions & 2 deletions

File tree

PSFramework/PSFramework.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
RootModule = 'PSFramework.psm1'
55

66
# Version number of this module.
7-
ModuleVersion = '1.11.342'
7+
ModuleVersion = '1.11.343'
88

99
# ID used to uniquely identify this module
1010
GUID = '8028b914-132b-431f-baa9-94a6952f21ff'

PSFramework/bin/PSFramework.dll

0 Bytes
Binary file not shown.

PSFramework/bin/PSFramework.pdb

0 Bytes
Binary file not shown.

PSFramework/changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 1.11.343 (2024-07-18)
4+
5+
- Fix: Disable-PSFLoggingProvider - fails with timeout error.
6+
37
## 1.11.342 (2024-07-18)
48

59
- Fix: New-PSFSupportPackage - fails to delete old managed debug dumps

library/PSFramework/Logging/ProviderInstance.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ public void Drain(bool WaitForFinalize = true)
552552

553553
System.Threading.Thread.Sleep(250);
554554

555-
if (limit > DateTime.Now)
555+
if (limit < DateTime.Now)
556556
throw new TimeoutException();
557557
}
558558

0 commit comments

Comments
 (0)