mirror of https://github.com/Icinga/icinga2.git
Bugfixes for the type validation feature.
This commit is contained in:
parent
33aba14197
commit
628d8374c7
|
@ -34,7 +34,7 @@ type Component {
|
|||
}
|
||||
|
||||
type Logger {
|
||||
string type,
|
||||
string "type",
|
||||
string path,
|
||||
string severity
|
||||
}
|
||||
|
@ -71,7 +71,7 @@ type IcingaApplication {
|
|||
string service,
|
||||
string pid_path,
|
||||
string state_path,
|
||||
string macros
|
||||
dictionary macros
|
||||
}
|
||||
|
||||
type Service {
|
||||
|
@ -104,5 +104,8 @@ type ServiceGroup {
|
|||
type Endpoint {
|
||||
string node,
|
||||
string service,
|
||||
number local
|
||||
number "local"
|
||||
}
|
||||
|
||||
type TimePeriod {
|
||||
}
|
||||
|
|
|
@ -62,8 +62,8 @@ void ConfigType::ValidateObject(const DynamicObject::Ptr& object) const
|
|||
continue;
|
||||
|
||||
if (!ValidateAttribute(it->first, it->second.Data))
|
||||
Logger::Write(LogWarning, "base", "Configuration attribute '" + it->first +
|
||||
"' on object '" + object->GetName() + "' of type '" + object->GetType()->GetName() + "' is unknown.");
|
||||
Logger::Write(LogWarning, "config", "Configuration attribute '" + it->first +
|
||||
"' on object '" + object->GetName() + "' of type '" + object->GetType()->GetName() + "' is unknown or contains an invalid type.");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -36,6 +36,9 @@ bool TypeRule::Matches(const String& name, const Value& value) const
|
|||
if (!Utility::Match(m_NamePattern, name))
|
||||
return false;
|
||||
|
||||
if (value.IsEmpty())
|
||||
return true;
|
||||
|
||||
switch (m_Type) {
|
||||
case TypeAny:
|
||||
return true;
|
||||
|
|
Loading…
Reference in New Issue