Merge pull request #23672 from owncloud/use-retry-wrapper-for-sftp

Use RetryWrapper for SFTP storage
This commit is contained in:
Thomas Müller 2016-03-31 11:24:47 +02:00
commit 8394985e14
1 changed files with 3 additions and 1 deletions

View File

@ -32,6 +32,7 @@
namespace OC\Files\Storage;
use Icewind\Streams\IteratorDirectory;
use Icewind\Streams\RetryWrapper;
use phpseclib\Net\SFTP\Stream;
/**
@ -374,7 +375,8 @@ class SFTP extends \OC\Files\Storage\Common {
case 'c':
case 'c+':
$context = stream_context_create(array('sftp' => array('session' => $this->getConnection())));
return fopen($this->constructUrl($path), $mode, false, $context);
$handle = fopen($this->constructUrl($path), $mode, false, $context);
return RetryWrapper::wrap($handle);
}
} catch (\Exception $e) {
}