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

Delta Between Two Patch Sets: state/constraints.go

Issue 9738043: cmd/jujud: do not change password
Left Patch Set: cmd/jujud: do not change password Created 11 years, 9 months ago
Right Patch Set: cmd/jujud: do not change password Created 11 years, 9 months 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:
Right: Side by side diff | Download
« no previous file with change/comment | « state/conn_test.go ('k') | state/container.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
(no file at all)
1 // Copyright 2013 Canonical Ltd. 1 // Copyright 2013 Canonical Ltd.
2 // Licensed under the AGPLv3, see LICENCE file for details. 2 // Licensed under the AGPLv3, see LICENCE file for details.
3 3
4 package state 4 package state
5 5
6 import ( 6 import (
7 "fmt" 7 "fmt"
8 "labix.org/v2/mgo" 8 "labix.org/v2/mgo"
9 "labix.org/v2/mgo/txn" 9 "labix.org/v2/mgo/txn"
10 "launchpad.net/juju-core/constraints" 10 "launchpad.net/juju-core/constraints"
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 if err := st.constraints.FindId(id).One(&doc); err == mgo.ErrNotFound { 68 if err := st.constraints.FindId(id).One(&doc); err == mgo.ErrNotFound {
69 return constraints.Value{}, errors.NotFoundf("constraints") 69 return constraints.Value{}, errors.NotFoundf("constraints")
70 } else if err != nil { 70 } else if err != nil {
71 return constraints.Value{}, err 71 return constraints.Value{}, err
72 } 72 }
73 return doc.value(), nil 73 return doc.value(), nil
74 } 74 }
75 75
76 func writeConstraints(st *State, id string, cons constraints.Value) error { 76 func writeConstraints(st *State, id string, cons constraints.Value) error {
77 ops := []txn.Op{setConstraintsOp(st, id, cons)} 77 ops := []txn.Op{setConstraintsOp(st, id, cons)}
78 » if err := st.runner.Run(ops, "", nil); err != nil { 78 » if err := st.runTransaction(ops); err != nil {
79 return fmt.Errorf("cannot set constraints: %v", err) 79 return fmt.Errorf("cannot set constraints: %v", err)
80 } 80 }
81 return nil 81 return nil
82 } 82 }
LEFTRIGHT

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