Allen Hadden

Results 2 comments of Allen Hadden

FWIW, it's likely related to this pytest removal: https://github.com/pytest-dev/pytest/issues/3080

I've also encountered this issue. This hack seems to work around it: ``` mgmt.addProperties(edgeLabel, keysToAdd); // same for addConnection String oldName = edgeLabel.name(); mgmt.changeName(edgeLabel, UUID.randomUUID().toString()); mgmt.changeName(edgeLabel, oldName); ``` The UUID...