Bitbucket pipeline fails (ftp) - Error: server response timeout

Viewed 23

My pipeline is not working with the following error:

* Connected to sftp.domain.com (157.90.40.40) port 5544 (#0)
< SSH-2.0-sFTP Server ready.
* server response timeout
* Closing connection 0
curl: (28) server response timeout

Between the "Server ready" and the timeout message there are more messages that create something like a wave. My pipeline yaml:

image: php:7.4

    pipelines:
     branches:
       master:
         - step:
             name: Deploy to production
             deployment: production
             script:
               - apt-get update
               - apt-get -qq install git-ftp
               - git ftp init -vv --user $LiveFTPUsername --passwd $LiveFTPPassword ftp://sftp.domain.com:5544
0 Answers
Related