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 ab3719d commit 9044daaCopy full SHA for 9044daa
test/perl/runtest.pl
@@ -26,13 +26,13 @@
26
27
if($host)
28
{
29
- $adm_dsn += ";host=".$host;
30
- $dsn += ";host=".$host;
+ $adm_dsn .= ";host=".$host;
+ $dsn .= ";host=".$host;
31
}
32
if($port)
33
34
- $adm_dsn += ";port=".$port;
35
- $dsn += ";port=".$port;
+ $adm_dsn .= ";port=".$port;
+ $dsn .= ";port=".$port;
36
37
38
print "Prepare test enviroment\n";
@@ -60,7 +60,7 @@
60
61
my @sql2 = (
62
"CREATE EXTENSION pgpro_scheduler",
63
- "ALTER DATABASE $dbname SET schedule.max_workers = 1",
+ "ALTER DATABASE $dbname SET schedule.max_workers = 2",
64
"ALTER SYSTEM SET schedule.database = '$dbname'",
65
"ALTER SYSTEM SET schedule.enabled = on",
66
"SELECT pg_reload_conf();",
0 commit comments