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

Commit 9044daa

Browse files
author
Vladimir Ershov
committed
fix tests #2
1 parent ab3719d commit 9044daa

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/perl/runtest.pl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@
2626

2727
if($host)
2828
{
29-
$adm_dsn += ";host=".$host;
30-
$dsn += ";host=".$host;
29+
$adm_dsn .= ";host=".$host;
30+
$dsn .= ";host=".$host;
3131
}
3232
if($port)
3333
{
34-
$adm_dsn += ";port=".$port;
35-
$dsn += ";port=".$port;
34+
$adm_dsn .= ";port=".$port;
35+
$dsn .= ";port=".$port;
3636
}
3737

3838
print "Prepare test enviroment\n";
@@ -60,7 +60,7 @@
6060

6161
my @sql2 = (
6262
"CREATE EXTENSION pgpro_scheduler",
63-
"ALTER DATABASE $dbname SET schedule.max_workers = 1",
63+
"ALTER DATABASE $dbname SET schedule.max_workers = 2",
6464
"ALTER SYSTEM SET schedule.database = '$dbname'",
6565
"ALTER SYSTEM SET schedule.enabled = on",
6666
"SELECT pg_reload_conf();",

0 commit comments

Comments
 (0)