Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(38)

Unified Diff: worker/localstorage/worker.go

Issue 13635044: Implement manual bootstrapping
Patch Set: Implement manual bootstrapping Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « worker/localstorage/config.go ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: worker/localstorage/worker.go
=== modified file 'worker/localstorage/worker.go'
--- provider/local/storage/worker.go 2013-08-30 04:07:04 +0000
+++ worker/localstorage/worker.go 2013-09-16 04:57:13 +0000
@@ -1,4 +1,7 @@
-package storage
+// Copyright 2013 Canonical Ltd.
+// Licensed under the AGPLv3, see LICENCE file for details.
+
+package localstorage
import (
"launchpad.net/loggo"
@@ -9,7 +12,7 @@
"launchpad.net/juju-core/worker"
)
-var logger = loggo.GetLogger("juju.local.storage")
+var logger = loggo.GetLogger("juju.worker.localstorage")
type storageWorker struct {
config agent.Config
@@ -49,14 +52,18 @@
sharedStorageDir := s.config.Value(agent.SharedStorageDir)
sharedStorageAddr := s.config.Value(agent.SharedStorageAddr)
- logger.Infof("serving %s on %s", sharedStorageDir, sharedStorageAddr)
+ if sharedStorageAddr != "" && sharedStorageDir != "" {
+ logger.Infof("serving %s on %s", sharedStorageDir, sharedStorageAddr)
- sharedStorageListener, err := localstorage.Serve(sharedStorageAddr, sharedStorageDir)
- if err != nil {
- logger.Errorf("error with local storage: %v", err)
- return err
+ sharedStorageListener, err := localstorage.Serve(sharedStorageAddr, sharedStorageDir)
+ if err != nil {
+ logger.Errorf("error with local storage: %v", err)
+ return err
+ }
+ defer sharedStorageListener.Close()
+ } else {
+ logger.Infof("no shared storage: dir=%q addr=%q", sharedStorageDir, sharedStorageAddr)
}
- defer sharedStorageListener.Close()
logger.Infof("storage routines started, awaiting death")
« no previous file with comments | « worker/localstorage/config.go ('k') | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b