diff --git a/docs/source/validatedesign.rst b/docs/source/validatedesign.rst index 07531fd7..9d128b92 100644 --- a/docs/source/validatedesign.rst +++ b/docs/source/validatedesign.rst @@ -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. diff --git a/drydock_provisioner/objects/healthcheck.py b/drydock_provisioner/objects/healthcheck.py index d6d4ab24..9bdad8d4 100644 --- a/drydock_provisioner/objects/healthcheck.py +++ b/drydock_provisioner/objects/healthcheck.py @@ -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):