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 6ece610 commit 65fda71Copy full SHA for 65fda71
src/WorkerJS/PHPClient/PostgresTaskStore.php
@@ -15,7 +15,7 @@ public function __construct($client){
15
parent::__construct($client);
16
17
$connection = parse_url($this->client->getSetting("store")["uri"]);
18
- $params = "host=".$connection["host"]." dbname=".trim($connection["path"], "/")." user=".$connection["user"]." password=".$connection["pass"]:
+ $params = "host=".$connection["host"]." dbname=".trim($connection["path"], "/")." user=".@$connection["user"]." password=".@$connection["pass"]:
19
20
$this->connection = pg_connect($this->client->getSetting("store")["uri"]);
21
}
0 commit comments