NGINX entrypoint.sh not polling for custom action host

The entrypoint.sh file in the rasa/nginx docker container is curling for app (line ~ 23), whilst this could also be a custom action server provided through environment variables. My suggestion will be to curl the ${CUSTOM_ACTION_HOST} which is set/used on line ~ 7 in entrypoint.sh.

curl --output /dev/null ${CUSTOM_ACTION_HOST}  # Check if custom action server is up
curl_result_code=$?  # Save the result of the check
echo ${curl_result_code}
number_of_tries=$((number_of_tries+1))  # Increment the number of tries

Hi @sschrijver,

thanks for your suggestion! We removed that part in the 0.28 releases of Rasa X :+1:t3:

1 Like