Commit e087349c authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Context component:

- corrected generation of default uuid for topology entities
parent c282c471
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ def topology_get_uuid(
    if len(topology_name) > 0:
        return context_uuid, get_uuid_from_string(topology_name, prefix_for_name=context_uuid)
    if allow_default:
        return context_uuid, get_uuid_from_string(DEFAULT_TOPOLOGY_NAME)
        return context_uuid, get_uuid_from_string(DEFAULT_TOPOLOGY_NAME, prefix_for_name=context_uuid)
    if allow_random:
        return context_uuid, get_uuid_random()