Merge pull request #7280 from angstwad/docker_inv_fix
Docker inventory bugfix for potential tracebackpull/4420/head
commit
ef741178c4
|
@ -299,7 +299,7 @@ def list_groups():
|
||||||
|
|
||||||
try:
|
try:
|
||||||
port = client.port(container, ssh_port)[0]
|
port = client.port(container, ssh_port)[0]
|
||||||
except (IndexError, AttributeError):
|
except (IndexError, AttributeError, TypeError):
|
||||||
port = dict()
|
port = dict()
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue