Tmp removal of edge id handling

This commit is contained in:
Knut Sveidqvist
2025-01-16 11:08:15 +01:00
parent 9114f65dbe
commit 259af0fb77

View File

@@ -940,9 +940,10 @@ export const getEdgeId = (
},
id?: string
) => {
if (id) {
return id;
}
// if (id) {
// return id;
// }
log.debug('Disabled addition of id:', id);
return `${prefix ? `${prefix}_` : ''}${from}_${to}_${counter}${suffix ? `_${suffix}` : ''}`;
};