Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/08/11 00:04:16 (13 years ago)
Author:
cneumuel
Message:

#1233

  • locking for childHiveJobs in OptimizerHiveJob avoid multi threaded access issues
  • added IsPrivileged to gui
  • minor changes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave/3.4/Manager/JobManager.cs

    r6371 r6381  
    8686        }
    8787        catch (Exception) {
     88          RemoveSlaveJob(job.Id, slaveJob); // clean up and rethrow
    8889          slaveJob.DisposeAppDomain();
    89           RemoveSlaveJob(job.Id, slaveJob); // clean up and rethrow
    9090          throw;
    9191        }
     
    268268        if (jobData == null) throw new SerializationException();
    269269      }
    270       catch { }
     270      catch { /* jobData will be null */ }
    271271      SlaveStatusInfo.IncrementJobsFailed();
    272272      OnJobFailed(slaveJob, jobData, e.Value2);
Note: See TracChangeset for help on using the changeset viewer.