diff options
author | Julian Andres Klode <jak@debian.org> | 2016-01-07 17:09:30 +0100 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2016-01-07 17:32:39 +0100 |
commit | 4fcff7ed46aec6c0147abe855c13dd537277273e (patch) | |
tree | 041a1e63f76c028d912252de779b631235a36ad5 /methods | |
parent | b89cd2e36f9696ccd56167593c792116ae4fc97f (diff) |
rred: Run in parallel
Remove the SingleInstance flag so we can use the new randomized
queue feature to run parallel.
Diffstat (limited to 'methods')
-rw-r--r-- | methods/rred.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/methods/rred.cc b/methods/rred.cc index 80f8746c7..0f938adf8 100644 --- a/methods/rred.cc +++ b/methods/rred.cc @@ -684,7 +684,7 @@ class RredMethod : public aptMethod { } public: - RredMethod() : aptMethod("rred", "2.0",SingleInstance | SendConfig), Debug(false) {} + RredMethod() : aptMethod("rred", "2.0", SendConfig), Debug(false) {} }; int main(int argc, char **argv) |