Skip to content

Commit 3435814

Browse files
committed
chore: remove retry logic
1 parent 7c9f3f2 commit 3435814

File tree

1 file changed

+41
-68
lines changed

1 file changed

+41
-68
lines changed

migrations/db/migrations/20240822021428_enable_webhooks_by_default.sql

+41-68
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ CREATE TABLE IF NOT EXISTS supabase_functions.migrations (
2020
-- Initial supabase_functions migration
2121
INSERT INTO supabase_functions.migrations (version) VALUES
2222
('initial'),
23-
('20210809183423_update_grants'),
24-
('20240125163000_add_retry_to_http_request')
23+
('20210809183423_update_grants')
2524
ON CONFLICT DO NOTHING;
2625

2726
-- supabase_functions.hooks definition
@@ -39,101 +38,75 @@ COMMENT ON TABLE supabase_functions.hooks IS 'Supabase Functions Hooks: Audit tr
3938
CREATE OR REPLACE FUNCTION supabase_functions.http_request()
4039
RETURNS trigger
4140
LANGUAGE plpgsql
42-
SECURITY DEFINER
43-
SET search_path TO 'supabase_functions'
4441
AS $function$
4542
DECLARE
46-
local_request_id bigint;
43+
request_id bigint;
4744
payload jsonb;
4845
url text := TG_ARGV[0]::text;
4946
method text := TG_ARGV[1]::text;
5047
headers jsonb DEFAULT '{}'::jsonb;
5148
params jsonb DEFAULT '{}'::jsonb;
52-
timeout_ms integer;
53-
retry_count integer DEFAULT 0;
54-
max_retries integer := COALESCE(TG_ARGV[5]::integer, 0);
55-
succeeded boolean := FALSE;
56-
retry_delays double precision[] := ARRAY[0, 0.250, 0.500, 1.000, 2.500, 5.000];
57-
status_code integer := 0;
49+
timeout_ms integer DEFAULT 1000;
5850
BEGIN
5951
IF url IS NULL OR url = 'null' THEN
6052
RAISE EXCEPTION 'url argument is missing';
6153
END IF;
54+
6255
IF method IS NULL OR method = 'null' THEN
6356
RAISE EXCEPTION 'method argument is missing';
6457
END IF;
58+
6559
IF TG_ARGV[2] IS NULL OR TG_ARGV[2] = 'null' THEN
6660
headers = '{"Content-Type": "application/json"}'::jsonb;
6761
ELSE
6862
headers = TG_ARGV[2]::jsonb;
6963
END IF;
64+
7065
IF TG_ARGV[3] IS NULL OR TG_ARGV[3] = 'null' THEN
7166
params = '{}'::jsonb;
7267
ELSE
7368
params = TG_ARGV[3]::jsonb;
7469
END IF;
75-
IF TG_ARGV[4] IS NOT NULL OR TG_ARGV[4] <> 'null' THEN
70+
71+
IF TG_ARGV[4] IS NULL OR TG_ARGV[4] = 'null' THEN
72+
timeout_ms = 1000;
73+
ELSE
7674
timeout_ms = TG_ARGV[4]::integer;
7775
END IF;
78-
-- Retry loop
79-
WHILE NOT succeeded AND retry_count <= max_retries LOOP
80-
PERFORM pg_sleep(retry_delays[retry_count + 1]);
81-
IF retry_delays[retry_count + 1] > 0 THEN
82-
RAISE WARNING 'Retrying HTTP request: {retry_attempt: %, url: "%", timeout_ms: %, retry_delay_ms: %}',
83-
retry_count, url, timeout_ms, retry_delays[retry_count + 1] * 1000;
84-
END IF;
85-
retry_count := retry_count + 1;
86-
BEGIN
87-
CASE
88-
WHEN method = 'GET' THEN
89-
SELECT http_get INTO local_request_id FROM net.http_get(
90-
url,
91-
params,
92-
headers,
93-
timeout_ms
94-
);
95-
WHEN method = 'POST' THEN
96-
payload = jsonb_build_object(
97-
'old_record', OLD,
98-
'record', NEW,
99-
'type', TG_OP,
100-
'table', TG_TABLE_NAME,
101-
'schema', TG_TABLE_SCHEMA
102-
);
103-
SELECT http_post INTO local_request_id FROM net.http_post(
104-
url,
105-
payload,
106-
params,
107-
headers,
108-
timeout_ms
109-
);
110-
ELSE
111-
RAISE EXCEPTION 'method argument % is invalid', method;
112-
END CASE;
113-
IF local_request_id IS NOT NULL THEN
114-
SELECT (response).status_code::integer
115-
INTO status_code
116-
FROM net._http_collect_response(local_request_id);
117-
IF status_code < 500 THEN
118-
succeeded := TRUE;
119-
END IF;
120-
END IF;
121-
-- Exit loop on successful request
122-
EXIT WHEN succeeded;
123-
EXCEPTION
124-
WHEN OTHERS THEN
125-
IF retry_count > max_retries THEN
126-
-- If retries exhausted, re-raise exception
127-
RAISE EXCEPTION 'HTTP request failed after % retries. SQL Error: { %, % }',
128-
max_retries, SQLERRM, SQLSTATE;
129-
END IF;
130-
END;
131-
END LOOP;
132-
-- Failed retries are not logged
76+
77+
CASE
78+
WHEN method = 'GET' THEN
79+
SELECT http_get INTO request_id FROM net.http_get(
80+
url,
81+
params,
82+
headers,
83+
timeout_ms
84+
);
85+
WHEN method = 'POST' THEN
86+
payload = jsonb_build_object(
87+
'old_record', OLD,
88+
'record', NEW,
89+
'type', TG_OP,
90+
'table', TG_TABLE_NAME,
91+
'schema', TG_TABLE_SCHEMA
92+
);
93+
94+
SELECT http_post INTO request_id FROM net.http_post(
95+
url,
96+
payload,
97+
params,
98+
headers,
99+
timeout_ms
100+
);
101+
ELSE
102+
RAISE EXCEPTION 'method argument % is invalid', method;
103+
END CASE;
104+
133105
INSERT INTO supabase_functions.hooks
134106
(hook_table_id, hook_name, request_id)
135107
VALUES
136-
(TG_RELID, TG_NAME, local_request_id);
108+
(TG_RELID, TG_NAME, request_id);
109+
137110
RETURN NEW;
138111
END
139112
$function$;

0 commit comments

Comments
 (0)