Skip to content

Commit 6950cbe

Browse files
committed
nits
1 parent 0f05e7c commit 6950cbe

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

dbos/queues_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,11 +213,10 @@ func TestWorkflowQueues(t *testing.T) {
213213

214214
// Check that the workflow hits DLQ after re-running max retries
215215
handles := make([]WorkflowHandle[any], 0, dlqMaxRetries+1)
216-
for i := range dlqMaxRetries {
216+
for _ = range dlqMaxRetries {
217217
recoveryHandles, err := recoverPendingWorkflows(dbosCtx.(*dbosContext), []string{"local"})
218218
require.NoError(t, err, "failed to recover pending workflows")
219219
assert.Len(t, recoveryHandles, 1, "expected 1 handle")
220-
t.Logf("Recovered handle: %v, index: %d", recoveryHandles[0].GetWorkflowID(), i)
221220
dlqStartEvent.Wait()
222221
dlqStartEvent.Clear()
223222
handle := recoveryHandles[0]

0 commit comments

Comments
 (0)