woblerr opened a new pull request, #1716: URL: https://github.com/apache/cloudberry/pull/1716
The command `gppkg --clean` fails with the following error: ```bash gpadmin@master:~$ gppkg --clean 20260502:20:46:20:008305 gppkg:master:gpadmin-[INFO]:-Starting gppkg with args: --clean 20260502:20:46:20:008305 gppkg:master:gpadmin-[ERROR]:-gppkg error: SyncPackages failed: '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. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
