Code Monkey home page Code Monkey logo

Comments (6)

fmartin-linagora avatar fmartin-linagora commented on August 22, 2024 1

May I propose this pull request ?

from wait-for-it.

aristosh avatar aristosh commented on August 22, 2024

Yup, I agree. I'm having the same problem.

from wait-for-it.

superkartoffel avatar superkartoffel commented on August 22, 2024

wouldn't it be just as easy to put the sleep command right in front of your actual command?
./wait-for-it.sh www.google.com:80 -- sleep 1; echo "google is up"

from wait-for-it.

fmartin-linagora avatar fmartin-linagora commented on August 22, 2024

Hello, yes i did this at first but it is a little bit more clutter.

from wait-for-it.

caryyu avatar caryyu commented on August 22, 2024

@superkartoffel your workaround didn't work for me in Kubernetes practice below(No issue without sleep 5;)

        command: 
        - bash
        - /scripts/wait-for-it.sh
        - ${DATABASE_HOST}:${DATABASE_PORT}
        - --timeout=30
        - --
        - sleep
        - 5;
        - bash
        - /scripts/init.sh

So I'd rather give a vote for this

from wait-for-it.

danielhanold avatar danielhanold commented on August 22, 2024

@caryyu Adding a sleep command won't work in containers when you use the exec form of the command, as none of the shell features are supported. I'm working around this by modifying the wait-for-it.sh scripts with the following sed command:

sed -i.bak "/exec.*WAITFORIT_CLI/i\    echo \"Extra startup delay: ${SCRIPT_STARTUP_DELAY:-5} seconds\"\n    sleep ${SCRIPT_STARTUP_DELAY:-5}" /wait-for-it.sh

This adds a default delay of 5 seconds, which can be customized through the SCRIPT_STARTUP_DELAY environment variable.

from wait-for-it.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.