Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/18/10 22:16:04 (15 years ago)
Author:
kgrading
Message:

#828 added various improvements to the plugin cache manager, the execution engine, the transaction handling on the serverside and the server console

Location:
branches/3.2/sources/HeuristicLab.Hive.Server.ADODataAccess/3.2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/sources/HeuristicLab.Hive.Server.ADODataAccess/3.2/JobAdapter.cs

    r3011 r4042  
    369369          //first check if pluginInfo already exists in the db
    370370          HivePluginInfoDto found = PluginInfoAdapter.GetByNameVersionBuilddate(
    371             pluginInfo.Name, pluginInfo.Version, pluginInfo.BuildDate);
     371            pluginInfo.Name, pluginInfo.Version.ToString(), pluginInfo.BuildDate);
    372372          if (found != null) {
    373373            pluginInfo.Id = found.Id;
  • branches/3.2/sources/HeuristicLab.Hive.Server.ADODataAccess/3.2/PluginInfoAdapter.cs

    r3011 r4042  
    2727        row.PluginId = pluginInfo.Id;
    2828        row.Name = pluginInfo.Name;
    29         row.Version = pluginInfo.Version;
     29        row.Version = pluginInfo.Version.ToString();
    3030        row.BuildDate = pluginInfo.BuildDate;
    3131
     
    4848
    4949        if (!row.IsVersionNull()) {
    50           pluginInfo.Version = row.Version;
     50          pluginInfo.Version = new Version(row.Version);
    5151        } else {
    5252          pluginInfo.Version = null;
Note: See TracChangeset for help on using the changeset viewer.