jeffreycheung
10/16/2024, 7:21 PMNate
10/16/2024, 7:29 PMwait_for
has not changed in 3.x - its the exact same syntaxjeffreycheung
10/16/2024, 7:54 PMNate
10/16/2024, 9:42 PMdefault-worker-pool
?
it seems like what is missing is that no one is running pip install common
or pip install .
in your runtime environment
the most typical way to solve this is to build a docker image that has your common
lib pip installed, and then specifying that image
in your docker/k8s work pool etc
But if you have a process worker, you could pip install your common lib at runtime in a pull step (arbitrary setup a worker performs), but some people don't like this because it pollutes the python environment where your worker runsjeffreycheung
10/19/2024, 2:06 PM