We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a94ca84 commit a911991Copy full SHA for a911991
Motely.DistributedWorker/Program.cs
@@ -36,7 +36,9 @@ static async Task<int> Main(string[] args)
36
{
37
case "--pool": url = args[++i]; break;
38
case "--threads": threads = int.Parse(args[++i]); break;
39
- case "--worker-id": workerId = args[++i]; break;
+ case "--worker-id":
40
+ case "--workerid": // common typo / convenience
41
+ workerId = args[++i]; break;
42
case "--filter": filterId = args[++i]; break;
43
case "--local-db": localDbDir = args[++i]; break;
44
}
0 commit comments