Skip to content

Commit

Permalink
fixed dns check for latest busybox image
Browse files Browse the repository at this point in the history
  • Loading branch information
kinkerl committed Jan 9, 2019
1 parent 9fc3276 commit 2f8b3ea
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
=========

3.3.11 (2019-01-09)
------------------------

* Updated DNS check to work with the latest busybox image. Older busybox versions must upgrade!


3.3.10 (2019-01-07)
------------------------

Expand Down
2 changes: 1 addition & 1 deletion divio_cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.3.10"
__version__ = "3.3.11"
2 changes: 1 addition & 1 deletion divio_cli/check_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ class DockerEngineDNSCheck(DockerEngineBaseCheck):
"busybox",
"sh",
"-c", # run in new a shell to avoid problems with timeout
"timeout -t 5 nslookup -type=a control.divio.com.",
"timeout 5 nslookup -type=a control.divio.com.",
)

def fmt_exception(self, exc):
Expand Down

0 comments on commit 2f8b3ea

Please sign in to comment.