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 7de313c commit 154161eCopy full SHA for 154161e
src/WorkerJS/PHPClient/PostgresTaskStore.php
@@ -14,6 +14,9 @@ class PostgresTaskStore extends TaskStore {
14
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"]:
19
+
20
$this->connection = pg_connect($this->client->getSetting("store")["uri"]);
21
}
22
0 commit comments