feat: Add support for large files with declarative nodes (#6461)

This commit is contained in:
Jon 2023-06-19 08:41:16 +01:00 committed by GitHub
parent 9978e2760b
commit e0f109fa7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -747,6 +747,8 @@ function convertN8nRequestToAxios(n8nRequest: IHttpRequestOptions): AxiosRequest
auth,
proxy,
url,
maxBodyLength: Infinity,
maxContentLength: Infinity,
} as AxiosRequestConfig;
axiosRequest.params = n8nRequest.qs;