-
Notifications
You must be signed in to change notification settings - Fork 1.6k
integrate user interruptions flow with ignition UI #6763
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
base: v3-hh-ledger
Are you sure you want to change the base?
Conversation
🦋 Changeset detectedLatest commit: 31311ca The changes in this PR will be included in the next version bump. This PR includes changesets to release 22 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
c9fae37
to
89c93f8
Compare
ccbb570
to
1be8ca3
Compare
@@ -6,7 +6,7 @@ import type { JournalMessage } from "../../execution/types/messages.js"; | |||
* @beta | |||
*/ | |||
export interface Journal { | |||
record(message: JournalMessage): void; | |||
record(message: JournalMessage): Promise<void>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs to be reverted - we are intentional about recording to the journal being sync rather than async.
What is it that forced us here?
// console.log(formattedMessage); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// console.log(formattedMessage); |
// Maybe the math should be different here? | ||
eventHandler.externalLinesWritten += formattedMessage.split("\n").length; | ||
|
||
return "mock response"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this placeholder code? Will it be updated with a subsequent PR?
// console.log("Hello from the task's implementation of requestSecretInput"); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// console.log("Hello from the task's implementation of requestSecretInput"); |
7465849
to
31311ca
Compare
resolves #6682