Delta Between Two Patch Sets: environs/dummy/environs.go
Issue 6120052 :
cmd/juju: working bootstrap and destroy commands
Left Patch Set: cmd/juju: working bootstrap and destroy commands
Right Patch Set: cmd/juju: working bootstrap and destroy commands
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
[revision details]
cmd/juju/bootstrap.go
cmd/juju/cmd_test.go
cmd/juju/destroy.go
cmd/juju/main.go
cmd/juju/main_test.go
environs/dummy/environs.go
juju/conn.go
store/charmd/main.go
store/server_test.go
LEFT RIGHT
(Both sides are equal) 1 package dummy 1 package dummy
2 2
3 import ( 3 import (
4 "bytes" 4 "bytes"
5 "errors" 5 "errors"
6 "fmt" 6 "fmt"
7 "io" 7 "io"
8 "io/ioutil" 8 "io/ioutil"
9 "launchpad.net/juju/go/environs" 9 "launchpad.net/juju/go/environs"
10 "launchpad.net/juju/go/schema" 10 "launchpad.net/juju/go/schema"
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading...
291 return m.id 291 return m.id
292 } 292 }
293 293
294 func (m *instance) DNSName() (string, error) { 294 func (m *instance) DNSName() (string, error) {
295 return m.id + ".dns", nil 295 return m.id + ".dns", nil
296 } 296 }
297 297
298 func (m *instance) WaitDNSName() (string, error) { 298 func (m *instance) WaitDNSName() (string, error) {
299 return m.DNSName() 299 return m.DNSName()
300 } 300 }
LEFT RIGHT