feat: persist blocked executor jobs
This commit is contained in:
@@ -223,6 +223,16 @@ async function probeServiceHealth(config, {
|
||||
durable: Boolean(body.checkpoint.durable),
|
||||
} : null,
|
||||
execution: body.execution == null ? null : String(body.execution).slice(0, 64),
|
||||
executorGateway: body.executorGateway && typeof body.executorGateway === 'object' ? {
|
||||
dispatchImplemented: body.executorGateway.dispatchImplemented === true,
|
||||
executionEnabled: body.executorGateway.executionEnabled === true,
|
||||
store: body.executorGateway.store && typeof body.executorGateway.store === 'object' ? {
|
||||
kind: body.executorGateway.store.kind == null
|
||||
? null
|
||||
: String(body.executorGateway.store.kind).slice(0, 64),
|
||||
durable: body.executorGateway.store.durable === true,
|
||||
} : null,
|
||||
} : null,
|
||||
} : null,
|
||||
};
|
||||
} catch (error) {
|
||||
|
||||
Reference in New Issue
Block a user