We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3048719 + e863061 commit 11ea914Copy full SHA for 11ea914
qiniu/rs.php
@@ -54,6 +54,7 @@ class Qiniu_RS_PutPolicy
54
public $FsizeLimit;
55
public $SaveKey;
56
public $PersistentOps;
57
+ public $PersistentPipeline;
58
public $PersistentNotifyUrl;
59
public $FopTimeout;
60
public $MimeLimit;
@@ -105,6 +106,9 @@ public function Token($mac) // => $token
105
106
if (!empty($this->PersistentOps)) {
107
$policy['persistentOps'] = $this->PersistentOps;
108
}
109
+ if (!empty($this->PersistentPipeline)) {
110
+ $policy['persistentPipeline'] = $this->PersistentPipeline;
111
+ }
112
if (!empty($this->PersistentNotifyUrl)) {
113
$policy['persistentNotifyUrl'] = $this->PersistentNotifyUrl;
114
0 commit comments