Skip to content

Commit

Permalink
feat: make ttl & batch_size SUSET
Browse files Browse the repository at this point in the history
  • Loading branch information
soedirgo committed Aug 23, 2024
1 parent c04cb77 commit bd95c71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/worker.c
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ _PG_init(void)
"should be a valid interval type",
&guc_ttl,
"6 hours",
PGC_SIGHUP, 0,
PGC_SUSET, 0,
NULL, NULL, NULL);

DefineCustomIntVariable("pg_net.batch_size",
Expand All @@ -443,7 +443,7 @@ _PG_init(void)
&guc_batch_size,
200,
0, PG_INT16_MAX,
PGC_SIGHUP, 0,
PGC_SUSET, 0,
NULL, NULL, NULL);

DefineCustomStringVariable("pg_net.database_name",
Expand Down

0 comments on commit bd95c71

Please sign in to comment.