Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/17 17:19:35 (7 years ago)
Author:
gkronber
Message:

#2520: changed all usages of StorableClass to use StorableType with an auto-generated GUID (did not add StorableType to other type definitions yet)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceReintegration/HeuristicLab.Clients.Hive/3.3/HiveServiceLocator.cs

    r14185 r14927  
    8787          WorkingEndpoint = endpointConfigurationName;
    8888          return cl;
    89         }
    90         catch (EndpointNotFoundException exc) {
     89        } catch (EndpointNotFoundException exc) {
    9190          exception = exc;
    9291          EndpointRetries++;
     
    114113      try {
    115114        return call(client);
    116       }
    117       finally {
     115      } finally {
    118116        try {
    119117          client.Close();
    120         }
    121         catch (Exception) {
     118        } catch (Exception) {
    122119          client.Abort();
    123120        }
     
    131128      try {
    132129        call(client);
    133       }
    134       finally {
     130      } finally {
    135131        try {
    136132          client.Close();
    137         }
    138         catch (Exception) {
     133        } catch (Exception) {
    139134          client.Abort();
    140135        }
     
    146141        try {
    147142          client.Close();
    148         }
    149         catch (Exception) {
     143        } catch (Exception) {
    150144          client.Abort();
    151145        }
Note: See TracChangeset for help on using the changeset viewer.