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

Issue 6651060: cmd/juju: add remove-unit subcommand (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
12 years, 5 months ago by dave
Modified:
12 years, 5 months ago
Reviewers:
mp+129341
Visibility:
Public.

Description

cmd/juju: add remove-unit subcommand https://code.launchpad.net/~dave-cheney/juju-core/018-cmd-juju-remove-units/+merge/129341 (do not edit description out of merge proposal)

Patch Set 1 #

Patch Set 2 : cmd/juju: add remove-unit subcommand #

Total comments: 6

Patch Set 3 : cmd/juju: add remove-unit subcommand #

Total comments: 17

Patch Set 4 : cmd/juju: add remove-unit subcommand #

Unified diffs Side-by-side diffs Delta from patch set Stats (+116 lines, -0 lines) Patch
A [revision details] View 1 2 3 1 chunk +2 lines, -0 lines 0 comments Download
M cmd/juju/cmd_test.go View 1 2 3 1 chunk +14 lines, -0 lines 0 comments Download
M cmd/juju/main.go View 1 chunk +1 line, -0 lines 0 comments Download
M cmd/juju/main_test.go View 1 chunk +1 line, -0 lines 0 comments Download
A cmd/juju/removeunit.go View 1 2 3 1 chunk +57 lines, -0 lines 0 comments Download
A cmd/juju/removeunit_test.go View 1 2 3 1 chunk +41 lines, -0 lines 0 comments Download

Messages

Total messages: 8
dave_cheney.net
Please take a look.
12 years, 5 months ago (2012-10-12 04:05:58 UTC) #1
fwereade
Little bit more work to do here, I think: (Also looking forward to the followup ...
12 years, 5 months ago (2012-10-15 05:51:35 UTC) #2
dave_cheney.net
Please take a look. https://codereview.appspot.com/6651060/diff/2001/cmd/juju/removeunit.go File cmd/juju/removeunit.go (right): https://codereview.appspot.com/6651060/diff/2001/cmd/juju/removeunit.go#newcode15 cmd/juju/removeunit.go:15: ServiceName string On 2012/10/15 05:51:35, ...
12 years, 5 months ago (2012-10-15 06:09:24 UTC) #3
niemeyer
LGTM given the following, but please wait for William. https://codereview.appspot.com/6651060/diff/8001/cmd/juju/removeunit.go File cmd/juju/removeunit.go (right): https://codereview.appspot.com/6651060/diff/8001/cmd/juju/removeunit.go#newcode12 cmd/juju/removeunit.go:12: ...
12 years, 5 months ago (2012-10-15 12:59:06 UTC) #4
rog
LGTM https://codereview.appspot.com/6651060/diff/8001/cmd/juju/removeunit.go File cmd/juju/removeunit.go (right): https://codereview.appspot.com/6651060/diff/8001/cmd/juju/removeunit.go#newcode12 cmd/juju/removeunit.go:12: // RemoveUnitCommand is responsible adding additional units to ...
12 years, 5 months ago (2012-10-15 13:01:49 UTC) #5
fwereade
LGTM assuming niemeyer's suggestions, with the exception of: https://codereview.appspot.com/6651060/diff/8001/cmd/juju/removeunit.go File cmd/juju/removeunit.go (right): https://codereview.appspot.com/6651060/diff/8001/cmd/juju/removeunit.go#newcode19 cmd/juju/removeunit.go:19: return ...
12 years, 5 months ago (2012-10-15 13:37:49 UTC) #6
niemeyer
https://codereview.appspot.com/6651060/diff/8001/cmd/juju/removeunit.go File cmd/juju/removeunit.go (right): https://codereview.appspot.com/6651060/diff/8001/cmd/juju/removeunit.go#newcode19 cmd/juju/removeunit.go:19: return &cmd.Info{"remove-unit", "", "removes service units (service/0, service/1, etc)", ...
12 years, 5 months ago (2012-10-15 13:42:06 UTC) #7
dave_cheney.net
12 years, 5 months ago (2012-10-15 23:11:41 UTC) #8
*** Submitted:

cmd/juju: add remove-unit subcommand

R=fwereade, niemeyer, rog
CC=
https://codereview.appspot.com/6651060

https://codereview.appspot.com/6651060/diff/8001/cmd/juju/removeunit.go
File cmd/juju/removeunit.go (right):

https://codereview.appspot.com/6651060/diff/8001/cmd/juju/removeunit.go#newco...
cmd/juju/removeunit.go:12: // RemoveUnitCommand is responsible adding additional
units to a service.
On 2012/10/15 12:59:06, niemeyer wrote:
> for removing units from

Done.

https://codereview.appspot.com/6651060/diff/8001/cmd/juju/removeunit.go#newco...
cmd/juju/removeunit.go:12: // RemoveUnitCommand is responsible adding additional
units to a service.
On 2012/10/15 13:01:49, rog wrote:
> erm, removing units from a service?

Done.

https://codereview.appspot.com/6651060/diff/8001/cmd/juju/removeunit.go#newco...
cmd/juju/removeunit.go:19: return &cmd.Info{"remove-unit", "", "removes service
units (service/0, service/1, etc)", ""}
On 2012/10/15 13:37:49, fwereade wrote:
> On 2012/10/15 12:59:06, niemeyer wrote:
> > "removes the provided service units"
> 
> I was thinking something like: 
> 
> &cmd.Info{"remove-unit", "<unit> [...]", "remove service units", ""}
> 
> ("remove service units" seems better to me because that's the short
description
> of the command -- it will appear by the command name sans args.)

Done.

https://codereview.appspot.com/6651060/diff/8001/cmd/juju/removeunit.go#newco...
cmd/juju/removeunit.go:27: args = f.Args()
On 2012/10/15 12:59:06, niemeyer wrote:
> c.UnitNames = f.Args()
> if len(c.UnitNames) == 0 {

Done.

https://codereview.appspot.com/6651060/diff/8001/cmd/juju/removeunit.go#newco...
cmd/juju/removeunit.go:51: return conn.RemoveUnits(units...)
On 2012/10/15 13:01:49, rog wrote:
> Just a thought: i'm not sure that Conn.RemoveUnits has the right name - it
> doesn't remove units, it just marks them as dying. This may be confusing, as
we
> do actually also have a RemoveUnit entry point in state. I think I'd tend
> towards deleting the RemoveUnits method from Conn and using EnsureDying
> directly, but YMMV.

Done.

https://codereview.appspot.com/6651060/diff/8001/cmd/juju/removeunit.go#newco...
cmd/juju/removeunit.go:51: return conn.RemoveUnits(units...)
On 2012/10/15 13:37:49, fwereade wrote:
> On 2012/10/15 13:01:49, rog wrote:
> > Just a thought: i'm not sure that Conn.RemoveUnits has the right name - it
> > doesn't remove units, it just marks them as dying. This may be confusing, as
> we
> > do actually also have a RemoveUnit entry point in state. I think I'd tend
> > towards deleting the RemoveUnits method from Conn and using EnsureDying
> > directly, but YMMV.
> 
> +1 to reworking this in a separate CL.

Good point, will do in followup.
Sign in to reply to this message.

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