Skip to content

Commit

Permalink
fixing timeout error
Browse files Browse the repository at this point in the history
  • Loading branch information
FriedrichWeinmann committed Jul 18, 2024
1 parent e71e197 commit e562a97
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PSFramework/PSFramework.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
RootModule = 'PSFramework.psm1'

# Version number of this module.
ModuleVersion = '1.11.342'
ModuleVersion = '1.11.343'

# ID used to uniquely identify this module
GUID = '8028b914-132b-431f-baa9-94a6952f21ff'
Expand Down
Binary file modified PSFramework/bin/PSFramework.dll
Binary file not shown.
Binary file modified PSFramework/bin/PSFramework.pdb
Binary file not shown.
4 changes: 4 additions & 0 deletions PSFramework/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 1.11.343 (2024-07-18)

- Fix: Disable-PSFLoggingProvider - fails with timeout error.

## 1.11.342 (2024-07-18)

- Fix: New-PSFSupportPackage - fails to delete old managed debug dumps
Expand Down
2 changes: 1 addition & 1 deletion library/PSFramework/Logging/ProviderInstance.cs
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ public void Drain(bool WaitForFinalize = true)

System.Threading.Thread.Sleep(250);

if (limit > DateTime.Now)
if (limit < DateTime.Now)
throw new TimeoutException();
}

Expand Down

0 comments on commit e562a97

Please sign in to comment.