We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56bfef6 commit 518f3f0Copy full SHA for 518f3f0
api/dsr_api.cpp
@@ -1171,8 +1171,8 @@ void DSRGraph::join_delta_edge(IDL::MvregEdge &&mvreg)
1171
std::optional<Edge> deleted_edge;
1172
{
1173
auto crdt_delta = IDLEdge_to_CRDT(std::move(mvreg));
1174
- deleted_edge = get_edge_(from, to, type);
1175
std::unique_lock<std::shared_mutex> lock(_mutex);
+ deleted_edge = get_edge_(from, to, type);
1176
//Check if the node where we are joining the edge exist.
1177
bool cfrom{nodes.contains(from)}, cto{nodes.contains(to)};
1178
bool dfrom{deleted.contains(from)}, dto{deleted.contains(to)};
0 commit comments