api(client): fix decompress timeout (#4568)
This commit is contained in:
parent
428311e854
commit
680bce6d94
1 changed files with 3 additions and 0 deletions
|
@ -231,6 +231,9 @@ class DaemonFileRepository extends DaemonRepository
|
||||||
'root' => $root ?? '/',
|
'root' => $root ?? '/',
|
||||||
'file' => $file,
|
'file' => $file,
|
||||||
],
|
],
|
||||||
|
// Wait for up to 15 minutes for the decompress to be completed when calling this endpoint
|
||||||
|
// since it will likely take quite awhile for large directories.
|
||||||
|
'timeout' => 60 * 15,
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
} catch (TransferException $exception) {
|
} catch (TransferException $exception) {
|
||||||
|
|
Loading…
Reference in a new issue