(
blockId: string,
blockName: string,
blockType: string,
startedAt: string
)
| 158 | } |
| 159 | |
| 160 | async onBlockStart( |
| 161 | blockId: string, |
| 162 | blockName: string, |
| 163 | blockType: string, |
| 164 | startedAt: string |
| 165 | ): Promise<void> { |
| 166 | await this.trackProgressWrite( |
| 167 | this.persistLastStartedBlock({ |
| 168 | blockId, |
| 169 | blockName, |
| 170 | blockType, |
| 171 | startedAt, |
| 172 | }) |
| 173 | ) |
| 174 | } |
| 175 | |
| 176 | /** |
| 177 | * Persist the last-started-block marker. Redis is the primary path; falls back |
no test coverage detected