Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/16/16 16:57:46 (9 years ago)
Author:
jlodewyc
Message:

#2582 Distribution childs and priority done. Display current jobs and start graphs

Location:
branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Services
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Services/HiveClientWeb.cs

    r13689 r13712  
    3636using HeuristicLab.Clients.Common.Properties;
    3737using Microsoft.AspNet.Hosting;
     38using HeuristicLab.Clients.Hive.WebJobManager.Services.Imports;
    3839
    3940namespace HeuristicLab.Clients.Hive.WebJobManager
     
    320321                }
    321322
    322 
     323                foreach (OptimizerHiveTask hiveJob in refreshableJob.HiveTasks.OfType<OptimizerHiveTask>())
     324                {
     325                    hiveJob.SetIndexInParentOptimizerList(null);
     326                }
    323327
    324328                // upload Job
     
    486490            var hiveExperiment = refreshableJob.Job;
    487491            refreshableJob.IsProgressing = true;
    488             TaskDownloader downloader = null;
     492            TaskDownloaderWeb downloader = null;
    489493
    490494            try
     
    499503
    500504                refreshableJob.Progress.Status = "Downloading tasks...";
    501                 downloader = new TaskDownloader(allTasks.Select(x => x.Id));
     505                downloader = new TaskDownloaderWeb(allTasks.Select(x => x.Id));
    502506                downloader.StartAsync();
    503507
  • branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Services/HiveServiceLocatorWebManagerService.cs

    r13656 r13712  
    149149            binding.AllowCookies = false;
    150150
     151            binding.ReaderQuotas.MaxDepth = 32;
     152            binding.ReaderQuotas.MaxStringContentLength = 200000000;
     153            binding.ReaderQuotas.MaxArrayLength = 200000000;
     154            binding.ReaderQuotas.MaxBytesPerRead = 4096;
     155            binding.ReaderQuotas.MaxNameTableCharCount = 16384;
     156
     157            binding.ReliableSession.Ordered = true;
     158            binding.ReliableSession.InactivityTimeout = TimeSpan.Parse("00:10:00");
     159            binding.ReliableSession.Enabled = false;
     160
     161
    151162            binding.Security.Mode = SecurityMode.Message;
    152163            binding.Security.Message.ClientCredentialType = MessageCredentialType.UserName;
Note: See TracChangeset for help on using the changeset viewer.