Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/20/11 14:16:53 (13 years ago)
Author:
cneumuel
Message:

#1233

  • renamed UptimeCalendar and Appointment to Downtime
  • added service methods to delete plugins and get plugin by hash
  • made reverted TransactionManager change, made it non-static and added interface
  • moved magic numbers to application settings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Web/Hive-3.4/Web.config

    r6369 r6452  
    22<configuration>
    33
     4  <configSections>
     5    <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
     6      <section name="HeuristicLab.Services.Hive.DataAccess.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
     7      <section name="HeuristicLab.Services.Hive.Common.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
     8    </sectionGroup>
     9  </configSections>
     10
     11  <applicationSettings>
     12    <HeuristicLab.Services.Hive.DataAccess.Settings>
     13      <!-- Timeout for long running database command (storing or loading jobData) -->
     14      <setting name="LongRunningDatabaseCommandTimeout" serializeAs="String">
     15        <value>00:05:33</value>
     16      </setting>
     17    </HeuristicLab.Services.Hive.DataAccess.Settings>
     18   
     19    <HeuristicLab.Services.Hive.Common.Settings>
     20      <!-- If a slave does not send a heartbeat for this time, it is set offline which means all of its jobs are rescheduled -->
     21      <setting name="SlaveHeartbeatTimeout" serializeAs="String">
     22        <value>00:01:00</value>
     23      </setting>
     24
     25      <!-- When a job is in state `Calculating` this is the maximum time it does not have to send heartbeats, otherwise its rescheduled -->
     26      <setting name="CalculatingJobHeartbeatTimeout" serializeAs="String">
     27        <value>00:05:30</value>
     28      </setting>
     29
     30      <!-- When a job is in state `Transferring` this is the maximum time it does not have to send heartbeats, otherwise its rescheduled -->
     31      <setting name="TransferringJobHeartbeatTimeout" serializeAs="String">
     32        <value>00:05:30</value>
     33      </setting>
     34    </HeuristicLab.Services.Hive.Common.Settings>
     35  </applicationSettings>
     36 
    437  <connectionStrings>
    538    <add name="HeuristicLab.Authentication" connectionString="data source=localhost;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication"/>
Note: See TracChangeset for help on using the changeset viewer.