Skip to content

Commit 16688c4

Browse files
committed
connection bug
1 parent 3113b49 commit 16688c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Connection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function setOptions($config)
5050
if (isset($config['options']['ssl_verification'])) {
5151
$this->sslVerification = $config['options']['ssl_verification'];
5252
}
53-
if (isset($config['options']['retires'])) {
53+
if (!empty($config['options']['retires'])) {
5454
$this->retires = $config['options']['retires'];
5555
}
5656
if (isset($config['options']['meta_header'])) {

0 commit comments

Comments
 (0)