JobRunner: update default settings
This commit is contained in:
parent
6bf84421d6
commit
50d205717f
@ -9,7 +9,7 @@ Public Class JobConfigParser
|
|||||||
Private Const ARGS_LIST_DELIMITER As String = "|"
|
Private Const ARGS_LIST_DELIMITER As String = "|"
|
||||||
|
|
||||||
''' <summary>
|
''' <summary>
|
||||||
''' Parse a job config string. ex: True|* 0/3 * * * ?|Arg1=Foo
|
''' Parse a job config string. ex: True|0 0/3 * * * ?|Arg1::Foo,Arg2::Bar
|
||||||
''' </summary>
|
''' </summary>
|
||||||
''' <param name="ConfigString"></param>
|
''' <param name="ConfigString"></param>
|
||||||
''' <returns>A populated JobConfig object</returns>
|
''' <returns>A populated JobConfig object</returns>
|
||||||
|
|||||||
@ -29,10 +29,10 @@
|
|||||||
<value>False</value>
|
<value>False</value>
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="ADSYNC_CONFIG" serializeAs="String">
|
<setting name="ADSYNC_CONFIG" serializeAs="String">
|
||||||
<value />
|
<value>True|0 0 0/1 * * ?|RootPath::LDAP://DIGITALDATA</value>
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="TEST_CONFIG" serializeAs="String">
|
<setting name="TEST_CONFIG" serializeAs="String">
|
||||||
<value>False|10/0 * * * * ?|Foo:Bar</value>
|
<value>False|10/0 * * * * ?|Foo::Bar</value>
|
||||||
</setting>
|
</setting>
|
||||||
</DigitalData.Services.JobRunner.My.MySettings>
|
</DigitalData.Services.JobRunner.My.MySettings>
|
||||||
</applicationSettings>
|
</applicationSettings>
|
||||||
|
|||||||
@ -119,7 +119,7 @@ Namespace My
|
|||||||
|
|
||||||
<Global.System.Configuration.ApplicationScopedSettingAttribute(), _
|
<Global.System.Configuration.ApplicationScopedSettingAttribute(), _
|
||||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||||
Global.System.Configuration.DefaultSettingValueAttribute("")> _
|
Global.System.Configuration.DefaultSettingValueAttribute("True|0 0 0/1 * * ?|RootPath::LDAP://DIGITALDATA")> _
|
||||||
Public ReadOnly Property ADSYNC_CONFIG() As String
|
Public ReadOnly Property ADSYNC_CONFIG() As String
|
||||||
Get
|
Get
|
||||||
Return CType(Me("ADSYNC_CONFIG"),String)
|
Return CType(Me("ADSYNC_CONFIG"),String)
|
||||||
@ -128,7 +128,7 @@ Namespace My
|
|||||||
|
|
||||||
<Global.System.Configuration.ApplicationScopedSettingAttribute(), _
|
<Global.System.Configuration.ApplicationScopedSettingAttribute(), _
|
||||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||||
Global.System.Configuration.DefaultSettingValueAttribute("False|10/0 * * * * ?|Foo:Bar")> _
|
Global.System.Configuration.DefaultSettingValueAttribute("False|10/0 * * * * ?|Foo::Bar")> _
|
||||||
Public ReadOnly Property TEST_CONFIG() As String
|
Public ReadOnly Property TEST_CONFIG() As String
|
||||||
Get
|
Get
|
||||||
Return CType(Me("TEST_CONFIG"),String)
|
Return CType(Me("TEST_CONFIG"),String)
|
||||||
|
|||||||
@ -24,10 +24,10 @@
|
|||||||
<Value Profile="(Default)">False</Value>
|
<Value Profile="(Default)">False</Value>
|
||||||
</Setting>
|
</Setting>
|
||||||
<Setting Name="ADSYNC_CONFIG" Type="System.String" Scope="Application">
|
<Setting Name="ADSYNC_CONFIG" Type="System.String" Scope="Application">
|
||||||
<Value Profile="(Default)" />
|
<Value Profile="(Default)">True|0 0 0/1 * * ?|RootPath::LDAP://DIGITALDATA</Value>
|
||||||
</Setting>
|
</Setting>
|
||||||
<Setting Name="TEST_CONFIG" Type="System.String" Scope="Application">
|
<Setting Name="TEST_CONFIG" Type="System.String" Scope="Application">
|
||||||
<Value Profile="(Default)">False|10/0 * * * * ?|Foo:Bar</Value>
|
<Value Profile="(Default)">False|10/0 * * * * ?|Foo::Bar</Value>
|
||||||
</Setting>
|
</Setting>
|
||||||
</Settings>
|
</Settings>
|
||||||
</SettingsFile>
|
</SettingsFile>
|
||||||
Loading…
x
Reference in New Issue
Block a user