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 = "|"
|
||||
|
||||
''' <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>
|
||||
''' <param name="ConfigString"></param>
|
||||
''' <returns>A populated JobConfig object</returns>
|
||||
|
||||
@ -29,10 +29,10 @@
|
||||
<value>False</value>
|
||||
</setting>
|
||||
<setting name="ADSYNC_CONFIG" serializeAs="String">
|
||||
<value />
|
||||
<value>True|0 0 0/1 * * ?|RootPath::LDAP://DIGITALDATA</value>
|
||||
</setting>
|
||||
<setting name="TEST_CONFIG" serializeAs="String">
|
||||
<value>False|10/0 * * * * ?|Foo:Bar</value>
|
||||
<value>False|10/0 * * * * ?|Foo::Bar</value>
|
||||
</setting>
|
||||
</DigitalData.Services.JobRunner.My.MySettings>
|
||||
</applicationSettings>
|
||||
|
||||
@ -119,7 +119,7 @@ Namespace My
|
||||
|
||||
<Global.System.Configuration.ApplicationScopedSettingAttribute(), _
|
||||
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
|
||||
Get
|
||||
Return CType(Me("ADSYNC_CONFIG"),String)
|
||||
@ -128,7 +128,7 @@ Namespace My
|
||||
|
||||
<Global.System.Configuration.ApplicationScopedSettingAttribute(), _
|
||||
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
|
||||
Get
|
||||
Return CType(Me("TEST_CONFIG"),String)
|
||||
|
||||
@ -24,10 +24,10 @@
|
||||
<Value Profile="(Default)">False</Value>
|
||||
</Setting>
|
||||
<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 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>
|
||||
</Settings>
|
||||
</SettingsFile>
|
||||
Loading…
x
Reference in New Issue
Block a user