#wait #docker-compose #url #host-port #http-status #waiting #async

bin+lib wait-for-them

Waits for TCP ports to be opened or for 200 status on http(s) urls

4 releases (breaking)

0.4.0 Feb 17, 2023
0.3.1 May 29, 2020
0.2.0 Mar 20, 2020
0.1.0 Mar 13, 2020

#1592 in Command line utilities

Download history 59/week @ 2024-01-01 77/week @ 2024-01-08 61/week @ 2024-01-15 71/week @ 2024-01-22 52/week @ 2024-01-29 20/week @ 2024-02-05 52/week @ 2024-02-12 78/week @ 2024-02-19 53/week @ 2024-02-26 24/week @ 2024-03-04 86/week @ 2024-03-11 81/week @ 2024-03-18 22/week @ 2024-03-25 70/week @ 2024-04-01 102/week @ 2024-04-08 152/week @ 2024-04-15

348 downloads per month

GPL-3.0 license

84KB
595 lines

Security audit Code Quality Release Documentation Downloads

Wait-For-Them

Waits until all provided host and port pairs are opened or return status 200 in case of http(s) url. It is written using async rust.

Cast

Installation

There are currently two way how to install the app.

You can install the binary only with a minimal subset of features.

cargo install wait-for-them --no-default-features

Or you can install it with all its features (including the nice progressbars and http(s) support).

cargo install wait-for-them

Running

Wait forever

wait-for-them host1:port1 host2:port2 http://host3:8080/

Wait with timeout (in miliseconds)

wait-for-them -t 5000 host1:port1 host2:port2 http://host3:8080/

Note that it returns a number of unopened host:port combinations. So if it worked ok it returns standard 0.

Execute a command after all hosts have opened ports

wait-for-them host1:port1 host2:port2 http://host3:8080/ -- cmd arg1 arg2

Note that if the ports are opened it returns the status code of cmd.

Motivation

The main motivation of this program was to use it within docker-compose config file (see docker-compose.yml). To support waiting for multiple hostname:port records in parallel.

Dependencies

~6–20MB
~258K SLoC