Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit c4d3a03

Browse files
committed
Change minimum max_worker_processes from 1 to 0
Setting it to 0 is probably not useful in practice, but it allows testing of situations without available background worker slots.
1 parent e2e95f5 commit c4d3a03

File tree

1 file changed

+1
-1
lines changed
  • src/backend/utils/misc

1 file changed

+1
-1
lines changed

src/backend/utils/misc/guc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2469,7 +2469,7 @@ static struct config_int ConfigureNamesInt[] =
24692469
NULL,
24702470
},
24712471
&max_worker_processes,
2472-
8, 1, MAX_BACKENDS,
2472+
8, 0, MAX_BACKENDS,
24732473
check_max_worker_processes, NULL, NULL
24742474
},
24752475

0 commit comments

Comments
 (0)