diff options
author | Simon Rettberg | 2016-06-09 17:51:05 +0200 |
---|---|---|
committer | Simon Rettberg | 2016-06-09 17:51:05 +0200 |
commit | 7982cce9f5da57f3d41afe8072965fad312effb9 (patch) | |
tree | fc3da9eadb21f994ff612e2b3c1cc2ce8b7fc73e /inc/property.inc.php | |
parent | [module] PageTitle: Fallback to module name (diff) | |
download | slx-admin-7982cce9f5da57f3d41afe8072965fad312effb9.tar.gz slx-admin-7982cce9f5da57f3d41afe8072965fad312effb9.tar.xz slx-admin-7982cce9f5da57f3d41afe8072965fad312effb9.zip |
[property] Increate ML list download timeout
Diffstat (limited to 'inc/property.inc.php')
-rw-r--r-- | inc/property.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/property.inc.php b/inc/property.inc.php index eae5033c..4a6c3720 100644 --- a/inc/property.inc.php +++ b/inc/property.inc.php @@ -100,7 +100,7 @@ class Property if (!isset($task['id'])) return 'Could not start list download (' . Message::asString() . ')'; if ($task['statusCode'] !== TASK_FINISHED) { - $task = Taskmanager::waitComplete($task['id'], 4000); + $task = Taskmanager::waitComplete($task['id'], 5000); } if ($task['statusCode'] !== TASK_FINISHED || !isset($task['data']['content'])) { return $task['data']['error']; |