chore(api): improve current request error message
This commit is contained in:
parent
c5196e12d2
commit
33d3f196cc
1 changed files with 1 additions and 1 deletions
|
|
@ -68,7 +68,7 @@ private function applyServiceUrls(Service $service, array $urlsArray, string $te
|
|||
|
||||
$duplicates = $urls->duplicates()->unique()->values();
|
||||
if ($duplicates->isNotEmpty() && ! $forceDomainOverride) {
|
||||
$errors[] = 'The current request contains conflicting URLs across containers: '.implode(', ', $duplicates->toArray());
|
||||
$errors[] = 'The current request contains conflicting URLs across containers: '.implode(', ', $duplicates->toArray()).'. Use force_domain_override=true to proceed.';
|
||||
}
|
||||
|
||||
if (count($errors) > 0) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue