We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fc3276 commit 2f8b3eaCopy full SHA for 2f8b3ea
3 files changed
CHANGELOG.rst
@@ -1,6 +1,12 @@
1
Changelog
2
=========
3
4
+3.3.11 (2019-01-09)
5
+------------------------
6
+
7
+* Updated DNS check to work with the latest busybox image. Older busybox versions must upgrade!
8
9
10
3.3.10 (2019-01-07)
11
------------------------
12
divio_cli/__init__.py
@@ -1 +1 @@
-__version__ = "3.3.10"
+__version__ = "3.3.11"
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 -type=a control.divio.com.",
+ "timeout 5 nslookup -type=a control.divio.com.",
181
)
182
183
def fmt_exception(self, exc):
0 commit comments