-
Notifications
You must be signed in to change notification settings - Fork 581
fix: Ensure Valid/Clear States in Alloy Engine Extension #5551
New issue
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
Merged
blewis12
merged 14 commits into
main
from
blewis12/add-engine-extension-up-metric-for-run-process
Feb 23, 2026
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
fe09c1f
initial impl
blewis12 8163292
log whenever we change state
blewis12 f2be64c
Ensure that tests account for ctx callback
blewis12 0f3d884
Clean up test names
blewis12 1dc9b8e
Ensure NotReady() reflects Ready() to avoid confusion
blewis12 afbab7b
Clean up state management locking
blewis12 a64a9a1
Remove unused IsUp function
blewis12 c7f0997
Ensure all states are handled in Shutdown()
blewis12 14a8c6d
Always use GetState()
blewis12 902d6b4
use iota
blewis12 7721d67
fix issue with re-using currentState within spawned goroutine
blewis12 968152d
Update comment to be clearer
blewis12 dc66997
only allocate runCtx, runCancel and runExited after flag parse succeeds
blewis12 fbf7476
Merge branch 'main' into blewis12/add-engine-extension-up-metric-for-…
blewis12 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| package readyctx | ||
|
|
||
| import "context" | ||
|
|
||
| type ctxKey struct{} | ||
|
|
||
| func WithOnReady(ctx context.Context, fn func()) context.Context { | ||
| if fn == nil { | ||
| return ctx | ||
| } | ||
| return context.WithValue(ctx, ctxKey{}, fn) | ||
| } | ||
|
|
||
| func OnReadyFromContext(ctx context.Context) (fn func(), ok bool) { | ||
| v := ctx.Value(ctxKey{}) | ||
| if v == nil { | ||
| return nil, false | ||
| } | ||
| fn, ok = v.(func()) | ||
| return fn, ok | ||
| } |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.