We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f4e7e9 commit b2caac3Copy full SHA for b2caac3
src/SecretsApi/SecretsApi.php
@@ -32,6 +32,9 @@ private function getBaseURI()
32
if (!$host && strpos($config->get('host'), 'hermes.sandbox-') !== false) {
33
$host = str_replace('hermes', 'pantheonapi', $config->get('host'));
34
}
35
+ if (!$host && strpos($config->get('host'), 'sandbox-') !== false) {
36
+ $host = $config->get('host');
37
+ }
38
// If host is still not set, use the default host.
39
if (!$host) {
40
$host = 'api.pantheon.io';
0 commit comments