Skip to content

Commit c1eeeda

Browse files
committed
fixes #95
1 parent 7303c54 commit c1eeeda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Bolt/BoltConnectionPool.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ private function configureSsl(UriInterface $uri, UriInterface $server, StreamSoc
128128
$explosion = explode('+', $scheme, 2);
129129
$sslConfig = $explosion[1] ?? '';
130130

131-
if (str_starts_with('s', $sslConfig)) {
131+
if (str_starts_with($sslConfig, 's')) {
132132
// We have to pass a different host when working with ssl on aura.
133133
// There is a strange behaviour where if we pass the uri host on a single
134134
// instance aura deployment, we need to pass the original uri for the

0 commit comments

Comments
 (0)