Skip to content

Commit 32cc6be

Browse files
evanpurkhiserandrewshie-sentry
authored andcommitted
fix(uptime): Missing trailing ) (#83527)
1 parent 8038fe9 commit 32cc6be

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

static/app/views/alerts/rules/uptime/httpSnippet.spec.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ describe('HTTPSnippet', function () {
3131
'POST /test?query=value HTTP/1.1',
3232
'Host: example.com',
3333
'X-Something: Header Value',
34-
'User-Agent: SentryUptimeBot/1.0 (+http://docs.sentry.io/product/alerts/uptime-monitoring/',
34+
'User-Agent: SentryUptimeBot/1.0 (+http://docs.sentry.io/product/alerts/uptime-monitoring/)',
3535
'Sentry-Trace: sentry-trace-value',
3636
'Content-Size: 18',
3737
``,

static/app/views/alerts/rules/uptime/httpSnippet.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export function HTTPSnippet({body, headers, method, url, traceSampling}: Props)
3636
...headers,
3737
[
3838
'User-Agent',
39-
'SentryUptimeBot/1.0 (+http://docs.sentry.io/product/alerts/uptime-monitoring/',
39+
'SentryUptimeBot/1.0 (+http://docs.sentry.io/product/alerts/uptime-monitoring/)',
4040
],
4141
['Sentry-Trace', exampleTrace],
4242
];

0 commit comments

Comments
 (0)