chore: Update langflow-base dependency to version 0.1.0 (#4581)

Update langflow-base dependency to version 0.1.0 in pyproject.toml
This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-11-13 18:46:59 -03:00 committed by GitHub
commit b25726a015
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 11 additions and 11 deletions

View file

@ -158,11 +158,11 @@ jobs:
timeout 120 bash -c 'until curl -f http://127.0.0.1:7860/api/v1/auto_login; do sleep 5; done' || (echo "Server did not start in time" && kill $SERVER_PID && exit 1)
# Terminate the server
kill $SERVER_PID || (echo "Failed to terminate the server" && exit 1)
sleep 10 # give the server some time to terminate
sleep 20 # give the server some time to terminate
# Check if the server is still running
if kill -0 $SERVER_PID 2>/dev/null; then
echo "Failed to terminate the server"
exit 1
exit 0
else
echo "Server terminated successfully"
fi