mirror of https://github.com/Icinga/icinga2.git
Ido*sqlConnection#InternalDeactivateObject(): mark object inactive also in memory
Previously: 1. You delete an object from a config file 2. You reload Icinga 3. Icinga fetches all objects and whether they're active from the IDO 4. Icinga recognizes that the just deleted object doesn't exist anymore 5. Icinga marks it as inactive in the IDO, but not in memory 6. You re-create the just deleted object via API 7. Icinga still thinks it's active and doesn't activate it - it's invisible refs #8584
This commit is contained in:
parent
ddbad7937d
commit
e0c13401f7
|
@ -833,6 +833,8 @@ void IdoMysqlConnection::InternalDeactivateObject(const DbObject::Ptr& dbobj)
|
|||
|
||||
/* Note that we're _NOT_ clearing the db refs via SetReference/SetConfigUpdate/SetStatusUpdate
|
||||
* because the object is still in the database. */
|
||||
|
||||
SetObjectActive(dbobj, false);
|
||||
}
|
||||
|
||||
bool IdoMysqlConnection::FieldToEscapedString(const String& key, const Value& value, Value *result)
|
||||
|
|
|
@ -648,6 +648,8 @@ void IdoPgsqlConnection::InternalDeactivateObject(const DbObject::Ptr& dbobj)
|
|||
|
||||
/* Note that we're _NOT_ clearing the db refs via SetReference/SetConfigUpdate/SetStatusUpdate
|
||||
* because the object is still in the database. */
|
||||
|
||||
SetObjectActive(dbobj, false);
|
||||
}
|
||||
|
||||
bool IdoPgsqlConnection::FieldToEscapedString(const String& key, const Value& value, Value *result)
|
||||
|
|
Loading…
Reference in New Issue