mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-06 17:57:38 +02:00
CLI: Fix issue #163, incorrect parallelism option
This commit is contained in:
@@ -176,7 +176,7 @@ class CommandLine(interfaces.plugins.FileConsumerInterface):
|
||||
# Set the PARALLELISM
|
||||
if partial_args.parallelism == 'processes':
|
||||
constants.PARALLELISM = constants.Parallelism.Multiprocessing
|
||||
elif partial_args.parallelism == 'threading':
|
||||
elif partial_args.parallelism == 'threads':
|
||||
constants.PARALLELISM = constants.Parallelism.Threading
|
||||
else:
|
||||
constants.PARALLELISM = constants.Parallelism.Off
|
||||
|
||||
Reference in New Issue
Block a user