Free cookie consent management tool by TermsFeed Policy Generator

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

#1233

  • created events when statelog changed
  • fixed memory leak in hiveengine
  • extended timeout for long running transactions and database contexts (when jobdata is stored)
  • replaced random guids in database with sequential guids for performance reasons
  • minor fixes and cleanups
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine.Views/3.4/HiveEngineView.cs

    r6381 r6419  
    105105   
    106106    #region Event Handlers (child controls)
    107     private void resourceIdsTextBox_TextChanged(object sender, EventArgs e) {
     107    private void resourceIdsTextBox_Validated(object sender, EventArgs e) {
    108108      Content.ResourceNames = resourceIdsTextBox.Text;
    109109    }
    110110
    111     private void priorityTextBox_TextChanged(object sender, EventArgs e) {
     111    private void priorityTextBox_Validated(object sender, EventArgs e) {
    112112      Content.Priority = int.Parse(priorityTextBox.Text);
    113113    }
     
    121121    }
    122122    #endregion
     123
     124
    123125  }
    124126}
Note: See TracChangeset for help on using the changeset viewer.