Changeset 8237
- Timestamp:
- 14/04/12 09:57:10 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
mauRepo/MolesManager/trunk/src/libs/migration/processor/dataEntity.py
r8236 r8237 128 128 def process(self): 129 129 exs = [] 130 #creates/retrieves CEDA_ObservationCollection 131 cedaObservationCollection = self._processObservationCollection() 130 #creates/retrieves CEDA_ObservationCollection 131 try: 132 cedaObservationCollection = self._processObservationCollection() 133 except Exception as ex: 134 exs.append(ex) 135 return exs 132 136 133 #retrieves the associated deployment links from the data entity137 #retrieves the associated deployment links from the data_entity 134 138 deploymentsLinks = findDeploymentsInDE(self._dataEntityMigration) 135 139 136 #retr eives the DataEntityMigration sorted by creation date140 #retrieves the DataEntityMigration sorted by creation date 137 141 deploymentMigrations = MigrationEPB.getAllDeploymentsMigrationByDataEntitySortedByDate( \ 138 142 self._dataEntityMigration, deploymentsLinks, self.migrationSessions.migrationSession)
Note: See TracChangeset
for help on using the changeset viewer.