temporalio / samples-php

Temporal PHP SDK samples
Other
88 stars 40 forks source link

PHP Docker usage examples #29

Open macielcr7 opened 1 year ago

macielcr7 commented 1 year ago

when you run any example using the configuration docker

E0201 16:23:53.596260122     170 thread_pool.cc:253]                   Waiting for thread pool to idle before forking
E0201 16:23:56.596381093     170 thread_pool.cc:253]                   Waiting for thread pool to idle before forking
E0201 16:23:59.596502744     170 thread_pool.cc:253]                   Waiting for thread pool to idle before forking
evan-hines-js commented 1 year ago

I had the same issues. Updating line 19 of the the Dockerfile to pull a grpc release before 1.51 works. 1.51 had a bug regarding forks. https://github.com/grpc/grpc/issues/31772


-RUN pecl install protobuf-${PROTOBUF_VERSION} grpc \
+RUN pecl install protobuf-${PROTOBUF_VERSION} grpc-1.49.0 \