Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/Command/CirclesCheck.php
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ private function checkLoopback(InputInterface $input, OutputInterface $output, s
try {
[$scheme, $cloudId, $path] = $this->parseAddress($loopback);
} catch (Exception $e) {
$output->writeln('<error>format must be http[s]://domain.name[:post][/path]</error>');
$output->writeln('<error>format must be http[s]://domain.name[:port][/path]</error>');
continue;
}

Expand Down Expand Up @@ -391,7 +391,7 @@ private function checkInternal(InputInterface $input, OutputInterface $output, s
try {
[$scheme, $cloudId, $path] = $this->parseAddress($internal);
} catch (Exception $e) {
$output->writeln('<error>format must be http[s]://domain.name[:post][/path]</error>');
$output->writeln('<error>format must be http[s]://domain.name[:port][/path]</error>');
continue;
}

Expand Down Expand Up @@ -571,7 +571,7 @@ private function checkFrontal(InputInterface $input, OutputInterface $output, st
try {
[$scheme, $cloudId, $path] = $this->parseAddress($frontal);
} catch (Exception $e) {
$output->writeln('<error>format must be http[s]://domain.name[:post][/path]</error>');
$output->writeln('<error>format must be http[s]://domain.name[:port][/path]</error>');
continue;
}

Expand Down
Loading