zefoy / ngx-dropzone-wrapper

Angular wrapper library for Dropzone
MIT License
174 stars 51 forks source link

Change TimeOut doesnt work #128

Closed vlgutv22 closed 5 years ago

vlgutv22 commented 5 years ago

Can`t change 30 seconds timeout, any value in the config dont affects on default value, timeout is 30s always, another properties seems working.... Please LMK how to fix it

{
      url: `${environment.apiUrlUploader}`,
      clickable: true,
      maxFiles: 100,
      timeout: 540000,
      retryChunks: true,
      retryChunksLimit: 4,
      maxFilesize: 209715200,
      parallelUploads: 1,
      headers: headers,
 };
vlgutv22 commented 5 years ago

version is latest "ngx-dropzone-wrapper": "^7.2.1",

vlgutv22 commented 5 years ago

and after 30s response is http://prntscr.com/mt10x0 but server is not responded.

Can`t change 30 seconds timeout, any value in the config dont affects on default value, timeout is 30s always, another properties seems working.... Please LMK how to fix it

{
      url: `${environment.apiUrlUploader}`,
      clickable: true,
      maxFiles: 100,
      timeout: 540000,
      retryChunks: true,
      retryChunksLimit: 4,
      maxFilesize: 209715200,
      parallelUploads: 1,
      headers: headers,
 };

and after 30s response is http://prntscr.com/mt10x0 but server is not responded.

sconix commented 5 years ago

You should report this to Dropzone repo, this is just a wrapper and the config is passed as it is to the Dropzone instance.

vlgutv22 commented 5 years ago

You should report this to Dropzone repo, this is just a wrapper and the config is passed as it is to the Dropzone instance.

Okay, will try, thx for reply