Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/15/12 14:08:11 (12 years ago)
Author:
ascheibe
Message:

#1950

  • fixed nasty permission exception: refresh automatically can only be activated after the job is actually uploaded to the server
  • fixed setting refresh automatically correctly when switching between jobs
Location:
trunk/sources/HeuristicLab.Clients.Hive/3.3
Files:
2 edited

Legend:

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

    r8700 r8914  
    294294        cancellationToken.ThrowIfCancellationRequested();
    295295
    296         if (refreshableJob.RefreshAutomatically) refreshableJob.StartResultPolling();
     296        refreshableJob.RefreshAutomatically = true;
     297        refreshableJob.StartResultPolling();
    297298
    298299        // upload tasks
  • trunk/sources/HeuristicLab.Clients.Hive/3.3/RefreshableJob.cs

    r8871 r8914  
    189189    #region Constructors and Cloning
    190190    public RefreshableJob() {
    191       this.refreshAutomatically = true;
     191      this.refreshAutomatically = false;
    192192      this.Job = new Job();
    193193      this.log = new ThreadSafeLog();
Note: See TracChangeset for help on using the changeset viewer.