File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
modules/vault/testcontainers/vault Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ You need to have the following tools available to you:
3939
4040## Adding new containers
4141
42- We have an [ issue template] ( .github /ISSUE_TEMPLATE/new-container.md ) for adding new containers, please refer to that for more information.
42+ We have an [ issue template] ( ./ISSUE_TEMPLATE/new-container.md ) for adding new containers, please refer to that for more information.
4343Once you've talked to the maintainers (we do our best to reply!) then you can proceed with contributing the new container.
4444
4545> [ !WARNING]
Original file line number Diff line number Diff line change 1212# under the License.
1313
1414from http .client import HTTPException
15+ from urllib .error import URLError
1516from urllib .request import urlopen
1617
1718from testcontainers .core .container import DockerContainer
@@ -61,7 +62,7 @@ def get_connection_url(self) -> str:
6162 exposed_port = self .get_exposed_port (self .port )
6263 return f"http://{ host_ip } :{ exposed_port } "
6364
64- @wait_container_is_ready (HTTPException )
65+ @wait_container_is_ready (HTTPException , URLError )
6566 def _healthcheck (self ) -> None :
6667 url = f"{ self .get_connection_url ()} /v1/sys/health"
6768 with urlopen (url ) as res :
You can’t perform that action at this time.
0 commit comments