Changeset 36fec1b
- Timestamp:
- Nov 3, 2009 10:52:54 AM (15 years ago)
- Branches:
- axis_example, compt_changes, info-ops, master, version-2.00, version-3.01, version-3.02
- Children:
- 6409cc5
- Parents:
- f760064
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
fedd/federation/dragon_access.py
rf760064 r36fec1b 67 67 self.axis2_home = config.get("access", "axis2_home") 68 68 self.idc_url = config.get("access", "idc") 69 self.domain = config.get("access", "domain") 69 70 70 71 self.attrs = { } … … 539 540 else: 540 541 cap = 100 542 543 544 # DRAGON's command line tool barfs if the source (ends[0]) is not in 545 # the domain controlled by the IDC. This code ensures this situation. 546 if self.domain and not ends[0].endswith(self.domain): 547 hold = ends[0] 548 for i, e in enumerate(ends): 549 if i == 0: continue 550 if e.endswith(self.domain): 551 ends[0] = e 552 ends[i] = hold 553 break 554 else: 555 raise service_error(service_error.req, 556 "No endpoint in my domain") 557 541 558 542 559 return cap, ends[0], ends[1], vlans
Note: See TracChangeset
for help on using the changeset viewer.