Comment 2 for bug 1737107

Revision history for this message
Andrew Wilkins (axwalk) wrote :

The only workaround I can think of at the moment is to perform Mongo surgery, adding a document to the statuses collection for each relation with the status "joined".

e.g. I have a relation with ID 0 in a model with UUID fa3a2330-bc2d-4dd4-8891-892ad2d992d0. I ran:

    db.statuses.insert({ "_id" : "fa3a2330-bc2d-4dd4-8891-892ad2d992d0:r#0", "model-uuid" : "fa3a2330-bc2d-4dd4-8891-892ad2d992d0", "status" : "joined", "statusinfo" : "joined", "statusdata" : { }, "updated" : NumberLong("1512721579642612830"), "neverset" : true, "txn-revno" : NumberLong(1), "txn-queue" : [ ] })

After running this command, the unit agent continued on its way.