Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/25/12 13:20:28 (12 years ago)
Author:
ascheibe
Message:

#1766 fixed crash when the hive job manager can't deserialize a task

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Clients.Hive/3.3/RefreshableJob.cs

    r7259 r7409  
    342342
    343343    private void jobResultPoller_ExceptionOccured(object sender, EventArgs<Exception> e) {
    344       OnExceptionOccured(e.Value);
     344      OnExceptionOccured(sender, e.Value);
    345345    }
    346346    private void jobDownloader_ExceptionOccured(object sender, EventArgs<Exception> e) {
    347       OnExceptionOccured(e.Value);
     347      OnExceptionOccured(sender, e.Value);
    348348    }
    349349    public void UpdateTotalExecutionTime() {
     
    445445
    446446    public event EventHandler<EventArgs<Exception>> ExceptionOccured;
    447     private void OnExceptionOccured(Exception exception) {
     447    private void OnExceptionOccured(object sender, Exception exception) {
    448448      log.LogException(exception);
    449449      var handler = ExceptionOccured;
    450       if (handler != null) handler(this, new EventArgs<Exception>(exception));
     450      if (handler != null) handler(sender, new EventArgs<Exception>(exception));
    451451    }
    452452
Note: See TracChangeset for help on using the changeset viewer.