Commit 4914d24a authored by nanahira's avatar nanahira

fix Gid not exists

parent ca6c7f2c
Pipeline #14955 passed with stages
in 2 minutes and 57 seconds
...@@ -12,7 +12,7 @@ import {Http} from '@angular/http'; ...@@ -12,7 +12,7 @@ import {Http} from '@angular/http';
// }; // };
const Aria2 = require('aria2'); const Aria2 = require('aria2');
const MAX_LIST_NUM = 1000; const MAX_LIST_NUM = 20000;
const ARIA2_INTERVAL = 500; const ARIA2_INTERVAL = 500;
export class DownloadStatus { export class DownloadStatus {
......
...@@ -148,7 +148,8 @@ function createAria2c() { ...@@ -148,7 +148,8 @@ function createAria2c() {
'--min-split-size=1M', '--min-split-size=1M',
'--max-connection-per-server=10', '--max-connection-per-server=10',
'--remove-control-file', '--remove-control-file',
'--allow-overwrite' '--allow-overwrite',
'--max-download-result=20000'
], { stdio: 'ignore' }); ], { stdio: 'ignore' });
} }
......
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