Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/29/10 00:52:06 (14 years ago)
Author:
cneumuel
Message:

#1260

  • migrated to .NET 4.0
  • moved state-information about heartbeat timestamps into DB to reduce IIS-recycling issues
  • optimized memory usage of ExperimentManager when lots of large jobs are downloaded
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Console/3.3/HiveServerConsole.cs

    r4772 r5179  
    5555        information.closeFormEvent += new closeForm(EnableForm);
    5656        information.Show();
    57       } 
     57      }
    5858    }
    5959
     
    9595          t.Abort();
    9696          this.Cursor = Cursors.Default;
    97           MessageBox.Show(ex.Message);
    98           lblError.Text = "Logon failed! Please restart console";
     97          MessageBox.Show(ex.ToString());
     98          lblError.Text = "Logon failed!\nException: " + ex.ToString();
    9999        }
    100100      }
    101         return false;
     101      return false;
    102102    }
    103103
Note: See TracChangeset for help on using the changeset viewer.