Skip to content

Commit

Permalink
Merge pull request #226 from divio/feature/dns_lookup
Browse files Browse the repository at this point in the history
updated dns lookup check
  • Loading branch information
kinkerl authored Jan 7, 2019
2 parents 14a5df3 + 5991abb commit fc8b993
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Changelog
=========

3.3.9 (2019-01-07)
------------------

* Improved DNS lookup check


3.3.8 (2018-08-14)
------------------

* Ensure 'stage' argument sanity
* Use a wrapper function to determine the available environments


3.3.7 (2018-02-28)
------------------
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.8"
__version__ = "3.3.9"
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 control.divio.com",
"timeout -t 5 nslookup -type=a control.divio.com.",
)

def fmt_exception(self, exc):
Expand Down

0 comments on commit fc8b993

Please sign in to comment.