Merge pull request #7365 from sebastic/spelling-errors

Fix spelling errors.
This commit is contained in:
Michael Insel 2019-07-29 15:59:31 +02:00 committed by GitHub
commit f034829955
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1713,7 +1713,7 @@ Message updates will be dropped when:
The receiver constructs a virtual host object and looks for the local CheckCommand object.
Returns UNKNWON as check result to the sender
Returns UNKNOWN as check result to the sender
* when the CheckCommand object does not exist.
* when there was an exception triggered from check execution, e.g. the plugin binary could not be executed or similar.

View File

@ -146,7 +146,7 @@ static int FormatOutput(const Dictionary::Ptr& result)
{ "OK", 0 },
{ "WARNING", 1},
{ "CRITICAL", 2},
{ "UNKNWON", 3}
{ "UNKNOWN", 3}
};
String state = static_cast<String>(payload->Get("result")).ToUpper();