We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ab099b commit aa26316Copy full SHA for aa26316
src/SecretsApi/SecretsApi.php
@@ -26,9 +26,9 @@ private function getBaseURI()
26
{
27
$config = $this->request()->getConfig();
28
29
- $protocol = $config->get('papi_protocol') ?? $config->get('protocol');
30
- $port = $config->get('papi_port') ?? $config->get('port');
31
- $host = $config->get('papi_host');
+ $protocol = $config->get('protocol') ?? $config->get('protocol');
+ $port = $config->get('port') ?? $config->get('port');
+ $host = $config->get('host');
32
if (!$host && strpos($config->get('host'), 'hermes.sandbox-') !== false) {
33
$host = str_replace('hermes', 'pantheonapi', $config->get('host'));
34
}
0 commit comments