mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-29 16:44:29 +02:00
Make ConfigCompiler::HandleInclude return an inline dictionary
fixes #8047
This commit is contained in:
parent
d88856a994
commit
705447ce18
@ -140,7 +140,9 @@ Expression *ConfigCompiler::HandleInclude(const String& include, bool search, co
|
|||||||
BOOST_THROW_EXCEPTION(std::invalid_argument(msgbuf.str()));
|
BOOST_THROW_EXCEPTION(std::invalid_argument(msgbuf.str()));
|
||||||
}
|
}
|
||||||
|
|
||||||
return new DictExpression(expressions);
|
DictExpression *expr = new DictExpression(expressions);
|
||||||
|
expr->MakeInline();
|
||||||
|
return expr;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user