Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Actualiza el tipo del argumento --max-threads en el comando Worker pa…
…ra utilizar la función de validación valid_max_tasks.
  • Loading branch information
rroblf01 committed Nov 14, 2025
commit 8d3c31f27e8e7c747e8408bff3f5d87419c17544
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ def add_arguments(self, parser: ArgumentParser) -> None:
"--max-threads",
nargs="?",
default=MAX_THREADS,
type=int,
type=valid_max_tasks,
help=f"The maximum number of threads to use for processing tasks (default: {MAX_THREADS})",
)

Expand Down