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:
Alexander A. Klimov 2021-02-08 16:57:15 +01:00
parent ddbad7937d
commit e0c13401f7
2 changed files with 4 additions and 0 deletions

View File

@ -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)

View File

@ -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)