You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just to mention that the OnPremise framework has implemented a fix for this, based in tunning the entriypoint for perseo-fe instances in the docker compose .yml file.
Thus, in the OnPremise deployment the problem is solved, although the present issue stills having sense, as a pending fix for non-OnPremise deployments (note that Perseo dockers could be used outside OnPremise also).
Docker sometimes when startup the perseo-core start slower than perseo-fe and fail with ECONNECTREFUSED (perseo-fe needs perseo-core startup process)
An analysis is performed and a synchronization between perseo-core and perseo-fe
But this sync has a cost
Other better option is add a minimal delay in perseo-fe startup. Here we can do the following options:
Inside Dockerfile replace:
CMD bin/perseo
by
CMD sleep 0.5 && bin/perseo
Replace CMD by an entrypoint script and inside this script, before the bin/perseo startup insert a timeout check:
The sh
Add a nodejs native sleep inside bin/perseo
We also have a restart always policy containers, but the error would be hidden
The text was updated successfully, but these errors were encountered: