mirror of
https://github.com/YGGverse/YGGtracker.git
synced 2025-01-11 15:37:57 +00:00
fix push api connection, define common memory timeout
This commit is contained in:
parent
7b673ba8c8
commit
b63fcabd50
@ -434,7 +434,13 @@ if (API_EXPORT_PUSH_ENABLED)
|
||||
// Send push request
|
||||
$debug['dump'][$manifest->import->push]['request'] = $request;
|
||||
|
||||
$curl = new Curl($manifest->import->push, API_USER_AGENT, $request);
|
||||
$curl = new Curl(
|
||||
$manifest->import->push,
|
||||
API_USER_AGENT,
|
||||
[
|
||||
'data' => json_encode($request)
|
||||
]
|
||||
);
|
||||
|
||||
$debug['http']['total']++;
|
||||
|
||||
@ -463,7 +469,7 @@ if (API_EXPORT_PUSH_ENABLED)
|
||||
}
|
||||
|
||||
// Update memory pool
|
||||
$memory->set('api.export.push', $memoryApiExportPush);
|
||||
$memory->set('api.export.push', $memoryApiExportPush, 3600);
|
||||
}
|
||||
|
||||
// Export push disabled, free api.export.push pool
|
||||
|
Loading…
Reference in New Issue
Block a user