Jumoo / uSync.Complete.Issues

Public Issue tracker and roadmap for uSync.Complete
https://jumoo.co.uk/usync/complete/
2 stars 1 forks source link

Ability to change the upload buffer size for Publisher and Exporter requests #167

Closed KevinJump closed 2 years ago

KevinJump commented 2 years ago

At the moment the only way to change the size of the request buffer for either publisher or exporter is via global config (or custom code).

this feature lets you set these values directly for both publisher and exporter and sets the defaults to 500mb in each case

N.B no config = 500mb upload limits which as most things are paged and zipped should be enough.

publisher

"uSync": {
   "Publisher": {
      "Settings": {
            "MaxRequestBodySize": 500000000
      }
   }
}

exporter

"uSync": {
   "Exporter": {
      "Settings": {
            "MaxRequestBodySize": 500000000
      }
   }
}