Fix: ClientConfig::$connectionTimeout is a milliseconds

This commit is contained in:
2021-06-17 15:46:51 +03:00
parent e3c64f6f09
commit b6f4726002

View File

@@ -26,9 +26,9 @@ final class ClientConfig
public ?string $authSecret = null,
/**
* The timeout for establishing a connection in seconds.
* The timeout for establishing a connection in milliseconds.
*/
public int $connectTimeout = 10,
public int $connectTimeout = 10000,
/**
* The max attempts for establishing a connection.