Branch
tickets/DM-55470
Type
AFK
Jira Key
DM-55470
Jira URL
https://rubinobs.atlassian.net/browse/DM-55470
Blocked by
#621
Parent PRD
#620
Task Order
4
Parallel with
#623, #625
Scope
Extend the auto-abort condition in subscribeToHtmlEvents (packages/times-square-client/src/sse.ts) so a validated event carrying a non-null execution_error also completes the subscription: the terminal event is still delivered to onEvent first, then onComplete fires and the stream is aborted. The existing success condition (execution_status === 'complete' && html_hash) is unchanged, and autoAbortOnComplete: false disables both conditions.
Extend sse.test.ts for the failure-abort path.
See PRD #620 §Scope (sse.ts bullet) and acceptance criterion 2.
Acceptance criteria
Branch
tickets/DM-55470
Type
AFK
Jira Key
DM-55470
Jira URL
https://rubinobs.atlassian.net/browse/DM-55470
Blocked by
#621
Parent PRD
#620
Task Order
4
Parallel with
#623, #625
Scope
Extend the auto-abort condition in
subscribeToHtmlEvents(packages/times-square-client/src/sse.ts) so a validated event carrying a non-nullexecution_erroralso completes the subscription: the terminal event is still delivered toonEventfirst, thenonCompletefires and the stream is aborted. The existing success condition (execution_status === 'complete' && html_hash) is unchanged, andautoAbortOnComplete: falsedisables both conditions.Extend
sse.test.tsfor the failure-abort path.See PRD #620 §Scope (
sse.tsbullet) and acceptance criterion 2.Acceptance criteria
execution_erroris delivered toonEvent, thenonCompletefires and the stream is aborted.autoAbortOnComplete: falsedisables the failure abort as well.