Lower cased dock in Drydock

Change-Id: Ie7f0d748744aaea820078d2cf3696bc5bd1075bf
This commit is contained in:
Aaron Sheffield 2018-03-13 15:53:01 -05:00
parent 1fd8bb9812
commit 8c2540c3f2
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
Validate Design
===============
The DryDock Validation API is a set of logic checks that must be passed before any information from the YAMLs will be
The Drydock Validation API is a set of logic checks that must be passed before any information from the YAMLs will be
processed by Drydock. These checks are performed synchronously and will return a message list with a success or
failures for each check.

View File

@ -33,7 +33,7 @@ class HealthCheck(object):
if msg.error or msg.level == "Error":
self.error_count = self.error_count + 1
self.code = 503
self.message = 'DryDock failed to respond'
self.message = 'Drydock failed to respond'
self.status = 'Failure'
def to_dict(self):