mirror of https://github.com/citusdata/citus.git
Fix redundant variable declaration (#7353)
The `$workerCount` declare twice in src/test/regress/pg_regress_multi.pl.pull/7354/head
parent
32b0fc23f5
commit
e14e8667cc
|
@ -90,7 +90,6 @@ my $workerCount = 2;
|
||||||
my $serversAreShutdown = "TRUE";
|
my $serversAreShutdown = "TRUE";
|
||||||
my $usingWindows = 0;
|
my $usingWindows = 0;
|
||||||
my $mitmPid = 0;
|
my $mitmPid = 0;
|
||||||
my $workerCount = 2;
|
|
||||||
|
|
||||||
if ($Config{osname} eq "MSWin32")
|
if ($Config{osname} eq "MSWin32")
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue