There was an error while loading. Please reload this page.
1 parent 00ecd7a commit e7d5075Copy full SHA for e7d5075
data_diff/__main__.py
@@ -48,7 +48,7 @@
48
"--threads",
49
default="1",
50
help="Number of worker threads to use per database. Default=1. "
51
- "'auto' will use the maximum amount recommended by Python. "
+ "A higher number will increase performance, but take more capacity from your database. "
52
"'serial' guarantees a single-threaded execution of the algorithm (useful for debugging).",
53
)
54
def main(
@@ -86,8 +86,6 @@ def main(
86
if threads.lower() == "serial":
87
threaded = False
88
threads = 1
89
- elif threads.lower() == "auto":
90
- threads = None
91
else:
92
try:
93
threads = int(threads)
0 commit comments