Commit 029043d
committed
Fix gppkg error: 'SyncPackages' object has no attribute 'ret'.
The command `gppkg --clean` fails with the following error: "'SyncPackages' object has no attribute 'ret'".
This occurs because `operations` was being passed positionally during the OperationWorkerPool initialization, which incorrectly bound it to the `should_stop` argument instead of `items` in the base WorkerPool class.
The solution is to pass `operations` as a keyword argument..1 parent f9ca4fa commit 029043d
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
230 | 230 | | |
231 | 231 | | |
232 | 232 | | |
233 | | - | |
| 233 | + | |
234 | 234 | | |
235 | 235 | | |
236 | 236 | | |
| |||
0 commit comments