You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -113,9 +113,9 @@ The prefix to be used for the Redis key under which file will be uploaded to Red
113
113
114
114
### revisionKey
115
115
116
-
The unique revision number for the version of the file being uploaded to Redis. The Redis key will be a combination of the `keyPrefix` and the `revisionKey`. By default this option will use either the `revisionKey` passed in from the command line or the `revisionKey` property from the deployment context.
116
+
The unique revision number for the version of the file being uploaded to Redis. The Redis key will be a combination of the `keyPrefix` and the `revisionKey`. By default this option will use either the `revisionKey` passed in from the command line or the `revisionData.revisionKey` property from the deployment context.
@@ -131,15 +131,15 @@ The Redis client to be used to upload files to the Redis store. By default this
131
131
132
132
### didDeployMessage
133
133
134
-
A message that will be displayed after the file has been successfully uploaded to Redis. By default this message will only display if the revision for `revisionKey` of the deployment context has been activated.
134
+
A message that will be displayed after the file has been successfully uploaded to Redis. By default this message will only display if the revision for `revisionData.revisionKey` of the deployment context has been activated.
135
135
136
136
*Default:*
137
137
138
138
```javascript
139
-
if (context.revisionKey&&!context.activatedRevisionKey) {
140
-
return"Deployed but did not activate revision "+context.revisionKey+". "
139
+
if (context.revisionData.revisionKey&&!context.revisionData.activatedRevisionKey) {
140
+
return"Deployed but did not activate revision "+context.revisionData.revisionKey+". "
0 commit comments