Skip to content

Commit 34d8eaa

Browse files
Correct UseDatabaseTransferQueue setting and remove from v13 and up
1 parent d72efc5 commit 34d8eaa

File tree

4 files changed

+3
-29
lines changed

4 files changed

+3
-29
lines changed

10/umbraco-deploy/getting-started/deploy-settings.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ For illustration purposes, the following structure represents the full set of op
4848
"DiskOperationsTimeout": "0.0:05:00",
4949
"SourceDeployBatchSize": null,
5050
"PackageBatchSize": null,
51-
"UseDatabaseBackedTransferQueue": true,
51+
"UseDatabaseTransferQueue": true,
5252
"IgnoreBrokenDependenciesBehavior": "Restore",
5353
"AcceptInvalidCertificates": false,
5454
"TransferFormsAsContent": true,
@@ -169,7 +169,7 @@ If encountering this issue, there are two batch settings that can be applied wit
169169
* `SourceDeployBatchSize` - applies a batch setting for the transfer of multiple selected items to an upstream environment (such as a media folder with many images).
170170
* `PackageBatchSize` - applies a batch setting to the processing of a Deploy "package", which contains all the items selected for a Deploy operation, plus all the determined dependencies and relations.
171171

172-
## UseDatabaseBackedTransferQueue
172+
## UseDatabaseTransferQueue
173173

174174
In earlier versions of Umbraco Deploy, the transfer queue was implemented using in-memory storage. As a result, it would not be persisted across application restarts.
175175

13/umbraco-deploy/getting-started/deploy-settings.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ For illustration purposes, the following structure represents the full set of op
4848
"DiskOperationsTimeout": "0.0:05:00",
4949
"SourceDeployBatchSize": null,
5050
"PackageBatchSize": null,
51-
"UseDatabaseBackedTransferQueue": true,
5251
"IgnoreBrokenDependenciesBehavior": "Restore",
5352
"AcceptInvalidCertificates": false,
5453
"TransferFormsAsContent": true,
@@ -189,14 +188,6 @@ If encountering this issue, there are two batch settings that can be applied wit
189188
* `SourceDeployBatchSize` - applies a batch setting for the transfer of multiple selected items to an upstream environment (such as a media folder with many images)
190189
* `PackageBatchSize` - applies a batch setting to the processing of a Deploy "package", which contains all the items selected for a Deploy operation, plus all the determined dependencies and relations
191190

192-
### UseDatabaseBackedTransferQueue
193-
194-
In earlier versions of Umbraco Deploy, the transfer queue was implemented using in-memory storage. As a result, it would not be persisted across application restarts.
195-
196-
From 10.1, a database-backed queue was implemented and is used by default.
197-
198-
If for any reason there was a need to revert to the previous implementation, the value of this setting can be set to `false`.
199-
200191
### TransferFormsAsContent {#transfer-forms-data-as-content}
201192

202193
In order for Deploy to handle Forms data as content, you'll to ensure the `TransferFormsAsContent` setting is set to `true`. To transfer Forms data as schema, i.e. via .uda files committed to source control, use a value of `false`.

14/umbraco-deploy/getting-started/deploy-settings.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ For illustration purposes, the following structure represents the full set of op
4949
"SourceDeployBatchSize": null,
5050
"PackageBatchSize": null,
5151
"MaxRequestLength": null,
52-
"UseDatabaseBackedTransferQueue": true,
52+
5353
"IgnoreBrokenDependenciesBehavior": "Restore",
5454
"AcceptInvalidCertificates": false,
5555
"TransferFormsAsContent": true,
@@ -196,14 +196,6 @@ When Deploy transfers files between unconnected environments (like a non-public
196196

197197
If no value is set, Deploy will create 16MB chunks, unless the [CMS `MaxRequestLength` setting](../../umbraco-cms/reference/configuration/runtimesettings.md) is lower (CMS setting is configured in kilobytes). Setting a value higher than the CMS `MaxRequestLength` (multiplied by 1024) will cause a validation error. Similarly, configuring a value higher than the [server or infrastructure limits](../../umbraco-cms/reference/configuration/maximumuploadsizesettings.md) will result in file transfers failures.
198198

199-
### UseDatabaseBackedTransferQueue
200-
201-
In earlier versions of Umbraco Deploy, the transfer queue was implemented using in-memory storage. As a result, it would not be persisted across application restarts.
202-
203-
From 10.1, a database-backed queue was implemented and is used by default.
204-
205-
If for any reason there was a need to revert to the previous implementation, the value of this setting can be set to `false`.
206-
207199
### TransferFormsAsContent {#transfer-forms-data-as-content}
208200

209201
In order for Deploy to handle Forms data as content, you'll to ensure the `TransferFormsAsContent` setting is set to `true`. To transfer Forms data as schema, i.e. via .uda files committed to source control, use a value of `false`.

15/umbraco-deploy/getting-started/deploy-settings.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ For illustration purposes, the following structure represents the full set of op
4949
"SourceDeployBatchSize": null,
5050
"PackageBatchSize": null,
5151
"MaxRequestLength": null,
52-
"UseDatabaseBackedTransferQueue": true,
5352
"IgnoreBrokenDependenciesBehavior": "Restore",
5453
"AcceptInvalidCertificates": false,
5554
"TransferFormsAsContent": true,
@@ -196,14 +195,6 @@ When Deploy transfers files between unconnected environments (like a non-public
196195

197196
If no value is set, Deploy will create 16MB chunks, unless the [CMS `MaxRequestLength` setting](../../umbraco-cms/reference/configuration/runtimesettings.md) is lower (CMS setting is configured in kilobytes). Setting a value higher than the CMS `MaxRequestLength` (multiplied by 1024) will cause a validation error. Similarly, configuring a value higher than the [server or infrastructure limits](../../umbraco-cms/reference/configuration/maximumuploadsizesettings.md) will result in file transfers failures.
198197

199-
### UseDatabaseBackedTransferQueue
200-
201-
In earlier versions of Umbraco Deploy, the transfer queue was implemented using in-memory storage. As a result, it would not be persisted across application restarts.
202-
203-
From 10.1, a database-backed queue was implemented and is used by default.
204-
205-
If for any reason there was a need to revert to the previous implementation, the value of this setting can be set to `false`.
206-
207198
### TransferFormsAsContent {#transfer-forms-data-as-content}
208199

209200
In order for Deploy to handle Forms data as content, you'll to ensure the `TransferFormsAsContent` setting is set to `true`. To transfer Forms data as schema, i.e. via .uda files committed to source control, use a value of `false`.

0 commit comments

Comments
 (0)