Change defual retry to zero

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
Bo-Yi Wu
2016-10-23 18:19:51 +08:00
parent f1428c1446
commit 999e769d29
3 changed files with 8 additions and 8 deletions

View File

@@ -133,14 +133,14 @@ func BuildDefaultPushConf() ConfYaml {
// Android
conf.Android.Enabled = false
conf.Android.APIKey = ""
conf.Android.MaxRetry = 1
conf.Android.MaxRetry = 0
// iOS
conf.Ios.Enabled = false
conf.Ios.KeyPath = "key.pem"
conf.Ios.Password = ""
conf.Ios.Production = false
conf.Ios.MaxRetry = 1
conf.Ios.MaxRetry = 0
// log
conf.Log.Format = "string"