mirror of
https://github.com/tuna/tunasync.git
synced 2025-04-20 20:22:46 +00:00
- rsync_no_timeout=true/false # disable --timeout option - rsync_timeout=n # set --timeout=n related to issue #121
14 lines
192 B
Go
14 lines
192 B
Go
package worker
|
|
|
|
// put global variables and types here
|
|
|
|
import (
|
|
"gopkg.in/op/go-logging.v1"
|
|
)
|
|
|
|
type empty struct{}
|
|
|
|
const defaultMaxRetry = 2
|
|
|
|
var logger = logging.MustGetLogger("tunasync")
|