Fix Linux crash and plan execution timeout#52
Merged
erikdarlingdata merged 4 commits intodevfrom Mar 6, 2026
Merged
Conversation
Issue #50: Linux threw PlatformNotSupportedException at launch because no credential service existed for Linux. Added InMemoryCredentialService as a fallback — credentials work within the session but don't persist across restarts. Issue #49: Actual and estimated plan capture had a hardcoded 60-second timeout. Bumped to 3600s (1 hour) so long-running queries can complete. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
CommandTimeout=0 means no timeout in ADO.NET. A performance tuning tool should never kill a query the user is deliberately running. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Shows a Cancel button in the toolbar while a plan capture is running. Also bound to Escape key. Without this, removing the timeout left no way to stop a long-running query short of closing the app. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Loading state now appears directly in a new tab with progress bar, status text, and cancel button. Errors display in-place instead of the status bar. Cancel removes the tab; Escape key checks CTS state instead of button visibility. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
PlatformNotSupportedExceptionbecauseCredentialServiceFactoryhad no Linux implementation. AddedInMemoryCredentialServiceas a fallback — credentials work within the session but aren't persisted to disk. Closes [BUG] Linux Release Errors on Initial Run Due to Credential Storage Missing #50CommandTimeout. Bumped to 3600s (1 hour) so long-running queries can complete. Users can still cancel manually. Closes [BUG] : Timeout 60s for Actual Plans #49Test plan
dotnet run -r linux-x64)🤖 Generated with Claude Code