mirror of https://github.com/Icinga/icinga2.git
Move endpoint error check to ti file
refs #9623 Conflicts: lib/remote/endpoint.cpp lib/remote/endpoint.hpp
This commit is contained in:
parent
0513be27b4
commit
f71a2ca340
|
@ -56,14 +56,6 @@ void Endpoint::OnAllConfigLoaded(void)
|
||||||
BOOST_THROW_EXCEPTION(ScriptError("Endpoint '" + GetName() + "' does not belong to a zone.", GetDebugInfo()));
|
BOOST_THROW_EXCEPTION(ScriptError("Endpoint '" + GetName() + "' does not belong to a zone.", GetDebugInfo()));
|
||||||
}
|
}
|
||||||
|
|
||||||
void Endpoint::ValidatePort(const String& value, const ValidationUtils& utils)
|
|
||||||
{
|
|
||||||
ObjectImpl<Endpoint>::ValidatePort(value, utils);
|
|
||||||
|
|
||||||
if (value.IsEmpty())
|
|
||||||
BOOST_THROW_EXCEPTION(ValidationError(this, boost::assign::list_of("enpoint_port"), "Port may not be empty."));
|
|
||||||
}
|
|
||||||
|
|
||||||
void Endpoint::AddClient(const ApiClient::Ptr& client)
|
void Endpoint::AddClient(const ApiClient::Ptr& client)
|
||||||
{
|
{
|
||||||
bool was_master = ApiListener::GetInstance()->IsMaster();
|
bool was_master = ApiListener::GetInstance()->IsMaster();
|
||||||
|
|
|
@ -56,7 +56,6 @@ public:
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual void OnAllConfigLoaded(void);
|
virtual void OnAllConfigLoaded(void);
|
||||||
virtual void ValidatePort(const String& value, const ValidationUtils& utils) override;
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
mutable boost::mutex m_ClientsLock;
|
mutable boost::mutex m_ClientsLock;
|
||||||
|
|
|
@ -25,7 +25,7 @@ namespace icinga
|
||||||
class Endpoint : DynamicObject
|
class Endpoint : DynamicObject
|
||||||
{
|
{
|
||||||
[config] String host;
|
[config] String host;
|
||||||
[config] String port {
|
[config, required] String port {
|
||||||
default {{{ return "5665"; }}}
|
default {{{ return "5665"; }}}
|
||||||
};
|
};
|
||||||
[config] double log_duration {
|
[config] double log_duration {
|
||||||
|
|
Loading…
Reference in New Issue