Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/21/15 13:21:59 (9 years ago)
Author:
ascheibe
Message:

#2355 added backwards compatibility to task in the service

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Services.Hive/3.3/DataTransfer/Task.cs

    r12926 r12959  
    4444    [DataMember]
    4545    public Guid JobId { get; set; }
     46    // BackwardsCompatibility3.3
     47    #region Backwards compatible code, remove with 3.4
     48    [DataMember]
     49    public bool IsPrivileged { get; set; }
     50    #endregion
    4651
    4752    public Task() {
    48       this.PluginsNeededIds = new List<Guid>();
     53      PluginsNeededIds = new List<Guid>();
     54      IsPrivileged = true;
    4955    }
    5056  }
Note: See TracChangeset for help on using the changeset viewer.