We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 14a5df3 + 5991abb commit fc8b993Copy full SHA for fc8b993
3 files changed
CHANGELOG.rst
@@ -1,6 +1,18 @@
1
Changelog
2
=========
3
4
+3.3.9 (2019-01-07)
5
+------------------
6
+
7
+* Improved DNS lookup check
8
9
10
+3.3.8 (2018-08-14)
11
12
13
+* Ensure 'stage' argument sanity
14
+* Use a wrapper function to determine the available environments
15
16
17
3.3.7 (2018-02-28)
18
------------------
divio_cli/__init__.py
@@ -1 +1 @@
-__version__ = "3.3.8"
+__version__ = "3.3.9"
divio_cli/check_system.py
@@ -177,7 +177,7 @@ class DockerEngineDNSCheck(DockerEngineBaseCheck):
177
"busybox",
178
"sh",
179
"-c", # run in new a shell to avoid problems with timeout
180
- "timeout -t 5 nslookup control.divio.com",
+ "timeout -t 5 nslookup -type=a control.divio.com.",
181
)
182
183
def fmt_exception(self, exc):
0 commit comments