Opened 12 years ago

Closed 12 years ago

#52 closed (fixed)

the Slice.sliceAuthority() setter is a noop

Reported by: chaos@bbn.com Owned by: somebody
Priority: major Milestone: 2012-09-04 client release
Component: Clients Version:
Keywords: v0.3.0 Cc:
Dependencies:

Description

The code:

print type(s)
print s.sliceAuthority
s.sliceAuthority = sa
print s.sliceAuthority

yields:

<class 'gmoc.Slice'>
None
None

Change History (1)

comment:1 Changed 12 years ago by chaos@bbn.com

Resolution: fixed
Status: newclosed

Fixed. The code:

urn = 'urn:publicid:IDN+pgeni.gpolab.bbn.com+slice+chaos-montreve-macaddr'
print slices[urn].sliceAuthority
slices[urn].sliceAuthority = sa
print slices[urn].sliceAuthority

now yields:

None
<gmoc.SliceAuthority object at 0x97ab74c>
Note: See TracTickets for help on using tickets.