Commit 99d6f1a6 authored by nanahira's avatar nanahira

fix max size

parent f3d6eb3a
Pipeline #5442 passed with stages
in 14 minutes and 11 seconds
...@@ -28,6 +28,8 @@ export class AppService extends ConsoleLogger { ...@@ -28,6 +28,8 @@ export class AppService extends ConsoleLogger {
await this.http.get<internal.Readable>(url, { await this.http.get<internal.Readable>(url, {
responseType: 'stream', responseType: 'stream',
timeout: 30000, timeout: 30000,
maxBodyLength: 4 * 1024 ** 3,
maxContentLength: 4 * 1024 ** 3,
}), }),
); );
return ret; return ret;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment