Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export type BulkOperation = NonNullable<GetBulkOperationByIdQuery['bulkOperation

export async function shortBulkOperationPoll(adminSession: AdminSession, operationId: string): Promise<BulkOperation> {
return renderSingleTask<BulkOperation>({
title: outputContent`Starting bulk operation...`,
title: outputContent`Starting bulk operation`,
task: async () => {
const startTime = Date.now()
const poller = pollBulkOperation({
Expand Down Expand Up @@ -55,7 +55,7 @@ export async function watchBulkOperation(
onAbort: () => void,
): Promise<BulkOperation> {
return renderSingleTask<BulkOperation>({
title: outputContent`Polling bulk operation...`,
title: outputContent`Polling bulk operation`,
task: async (updateStatus) => {
const poller = pollBulkOperation({
adminSession,
Expand Down
Loading