mirror of
https://github.com/tuna/tunasync.git
synced 2025-06-15 14:12:47 +00:00
singleton of worker is not used, so remove it
This commit is contained in:
parent
96f11f57ed
commit
7eb119b892
@ -60,7 +60,7 @@ func startWorker(c *cli.Context) error {
|
|||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
w := worker.GetTUNASyncWorker(cfg)
|
w := worker.NewTUNASyncWorker(cfg)
|
||||||
if w == nil {
|
if w == nil {
|
||||||
logger.Errorf("Error intializing TUNA sync worker.")
|
logger.Errorf("Error intializing TUNA sync worker.")
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
|
@ -12,8 +12,6 @@ import (
|
|||||||
. "github.com/tuna/tunasync/internal"
|
. "github.com/tuna/tunasync/internal"
|
||||||
)
|
)
|
||||||
|
|
||||||
var tunasyncWorker *Worker
|
|
||||||
|
|
||||||
// A Worker is a instance of tunasync worker
|
// A Worker is a instance of tunasync worker
|
||||||
type Worker struct {
|
type Worker struct {
|
||||||
L sync.Mutex
|
L sync.Mutex
|
||||||
@ -29,11 +27,8 @@ type Worker struct {
|
|||||||
httpClient *http.Client
|
httpClient *http.Client
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetTUNASyncWorker returns a singalton worker
|
// NewTUNASyncWorker creates a worker
|
||||||
func GetTUNASyncWorker(cfg *Config) *Worker {
|
func NewTUNASyncWorker(cfg *Config) *Worker {
|
||||||
if tunasyncWorker != nil {
|
|
||||||
return tunasyncWorker
|
|
||||||
}
|
|
||||||
|
|
||||||
w := &Worker{
|
w := &Worker{
|
||||||
cfg: cfg,
|
cfg: cfg,
|
||||||
@ -57,7 +52,6 @@ func GetTUNASyncWorker(cfg *Config) *Worker {
|
|||||||
|
|
||||||
w.initJobs()
|
w.initJobs()
|
||||||
w.makeHTTPServer()
|
w.makeHTTPServer()
|
||||||
tunasyncWorker = w
|
|
||||||
return w
|
return w
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user