We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faef0ad commit 6a587b3Copy full SHA for 6a587b3
apps/webapp/app/services/runsReplicationService.server.ts
@@ -476,6 +476,7 @@ export class RunsReplicationService {
476
this.logger.error("Error inserting task run inserts", {
477
error: taskRunError,
478
flushId,
479
+ runIds: taskRunInserts.map((r) => r.run_id),
480
});
481
recordSpanError(span, taskRunError);
482
}
@@ -484,6 +485,7 @@ export class RunsReplicationService {
484
485
this.logger.error("Error inserting payload inserts", {
486
error: payloadError,
487
488
+ runIds: payloadInserts.map((r) => r.run_id),
489
490
recordSpanError(span, payloadError);
491
0 commit comments