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

Delta Between Two Patch Sets: juju/conn.go

Issue 7945044: statecmd: don't use juju.Conn unnecessarily
Left Patch Set: Created 12 years ago
Right Patch Set: statecmd: don't use juju.Conn unnecessarily Created 12 years ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « cmd/juju/destroymachine.go ('k') | juju/conn_test.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 package juju 1 package juju
2 2
3 import ( 3 import (
4 "crypto/sha256" 4 "crypto/sha256"
5 "encoding/hex" 5 "encoding/hex"
6 "errors" 6 "errors"
7 "fmt" 7 "fmt"
8 "io" 8 "io"
9 "io/ioutil" 9 "io/ioutil"
10 "launchpad.net/goyaml" 10 "launchpad.net/goyaml"
(...skipping 26 matching lines...) Expand all
37 func NewConn(environ environs.Environ) (*Conn, error) { 37 func NewConn(environ environs.Environ) (*Conn, error) {
38 info, _, err := environ.StateInfo() 38 info, _, err := environ.StateInfo()
39 if err != nil { 39 if err != nil {
40 return nil, err 40 return nil, err
41 } 41 }
42 password := environ.Config().AdminSecret() 42 password := environ.Config().AdminSecret()
43 if password == "" { 43 if password == "" {
44 return nil, fmt.Errorf("cannot connect without admin-secret") 44 return nil, fmt.Errorf("cannot connect without admin-secret")
45 } 45 }
46 info.Password = password 46 info.Password = password
47 » st, err := state.Open(info) 47 » st, err := state.Open(info, state.DefaultDialTimeout)
48 if state.IsUnauthorizedError(err) { 48 if state.IsUnauthorizedError(err) {
49 // We can't connect with the administrator password,; 49 // We can't connect with the administrator password,;
50 // perhaps this was the first connection and the 50 // perhaps this was the first connection and the
51 // password has not been changed yet. 51 // password has not been changed yet.
52 info.Password = trivial.PasswordHash(password) 52 info.Password = trivial.PasswordHash(password)
53 53
54 // We try for a while because we might succeed in 54 // We try for a while because we might succeed in
55 // connecting to mongo before the state has been 55 // connecting to mongo before the state has been
56 // initialized and the initial password set. 56 // initialized and the initial password set.
57 for a := redialStrategy.Start(); a.Next(); { 57 for a := redialStrategy.Start(); a.Next(); {
58 » » » st, err = state.Open(info) 58 » » » st, err = state.Open(info, state.DefaultDialTimeout)
59 if !state.IsUnauthorizedError(err) { 59 if !state.IsUnauthorizedError(err) {
60 break 60 break
61 } 61 }
62 } 62 }
63 if err != nil { 63 if err != nil {
64 return nil, err 64 return nil, err
65 } 65 }
66 if err := st.SetAdminMongoPassword(password); err != nil { 66 if err := st.SetAdminMongoPassword(password); err != nil {
67 return nil, err 67 return nil, err
68 } 68 }
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 392
393 // strip removes from validated, any keys which are not also present in unvalida ted. 393 // strip removes from validated, any keys which are not also present in unvalida ted.
394 func strip(validated map[string]interface{}, unvalidated map[string]string) map[ string]interface{} { 394 func strip(validated map[string]interface{}, unvalidated map[string]string) map[ string]interface{} {
395 for k := range validated { 395 for k := range validated {
396 if _, ok := unvalidated[k]; !ok { 396 if _, ok := unvalidated[k]; !ok {
397 delete(validated, k) 397 delete(validated, k)
398 } 398 }
399 } 399 }
400 return validated 400 return validated
401 } 401 }
LEFTRIGHT

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