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 1c34023 commit 8fa8b35Copy full SHA for 8fa8b35
2 files changed
api/pkg/repositories/repository.go
@@ -36,7 +36,7 @@ func isRetryableError(err error) bool {
36
func executeWithRetry(fn func() error) (err error) {
37
return retry.New(
38
retry.LastErrorOnly(true),
39
- retry.Attempts(3),
+ retry.Attempts(5),
40
retry.Delay(100*time.Millisecond),
41
retry.RetryIf(isRetryableError),
42
).Do(fn)
web/pages/messages/index.vue
@@ -45,7 +45,7 @@
45
outlined
46
rows="2"
47
class="mb-8"
48
- hint="Your message will be sent as an MMS when the comma separated list of attachment URL's are present"
+ hint="The message will be sent as an MMS when a comma separated list of attachment URLs are present"
49
placeholder="https://example.com/image.jpg, https://example.com/video.mp4"
50
label="Attachment URLs (optional)"
51
></v-textarea>
0 commit comments