From 66953c1e7e7bfad740ee0cd827e784ae4c2cefc7 Mon Sep 17 00:00:00 2001 From: Brandur Date: Sun, 12 Nov 2023 11:11:21 -0800 Subject: [PATCH] Bump comments in the unique job example An incredibly trivial change to bump a few comments in the unique job example in accordance to how they're written in our documentation. I realized one of the comments implied that the job would be worked exactly once which isn't a guarantee that we can actually make. Say that insertion will be skipped instead. --- example_unique_job_test.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/example_unique_job_test.go b/example_unique_job_test.go index 8d7fd9b3..ff4834bd 100644 --- a/example_unique_job_test.go +++ b/example_unique_job_test.go @@ -97,13 +97,15 @@ func Example_uniqueJob() { panic(err) } + // First job insertion for account 1. _, err = riverClient.Insert(ctx, ReconcileAccountArgs{AccountID: 1}, nil) if err != nil { panic(err) } // Job is inserted a second time, but it doesn't matter because its unique - // args ensure that it'll only run once per account per 24 hour period. + // args cause the insertion to be skipped because it's meant to only run + // once per account per 24 hour period. _, err = riverClient.Insert(ctx, ReconcileAccountArgs{AccountID: 1}, nil) if err != nil { panic(err)