Push json to the lookupserver

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2016-11-18 14:19:47 +01:00
parent f7f70028d1
commit c20c7f31da
No known key found for this signature in database
GPG key ID: F941078878347C0C

View file

@ -49,7 +49,7 @@ class UpdateLookupServer {
/** @var Signer */
private $signer;
/** @var string URL point to lookup server */
private $lookupServer = 'http://127.0.0.1:3000/index2.php/users';
private $lookupServer = 'http://127.0.0.1:3000/users';
/**
* @param AccountManager $accountManager
@ -124,8 +124,8 @@ class UpdateLookupServer {
$httpClient = $this->clientService->newClient();
$httpClient->post($this->lookupServer,
[
'body' => $dataArray,
'timeout' => 3,
'body' => json_encode($dataArray),
'timeout' => 10,
'connect_timeout' => 3,
]
);