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

Delta Between Two Patch Sets: environs/ec2/config.go

Issue 6209094: environs/ec2: add public bucket field to configuration.
Left Patch Set: environs/ec2: add public bucket field to configuration. Created 12 years, 9 months ago
Right Patch Set: environs/ec2: add public bucket field to configuration. Created 12 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:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « [revision details] ('k') | environs/ec2/config_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
(Both sides are equal)
1 package ec2 1 package ec2
2 2
3 import ( 3 import (
4 "fmt" 4 "fmt"
5 "launchpad.net/goamz/aws" 5 "launchpad.net/goamz/aws"
6 "launchpad.net/juju/go/environs" 6 "launchpad.net/juju/go/environs"
7 "launchpad.net/juju/go/schema" 7 "launchpad.net/juju/go/schema"
8 ) 8 )
9 9
10 // providerConfig is a placeholder for any config information 10 // providerConfig is a placeholder for any config information
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 } 99 }
100 return &c, nil 100 return &c, nil
101 } 101 }
102 102
103 func maybeString(x interface{}, dflt string) string { 103 func maybeString(x interface{}, dflt string) string {
104 if x == nil { 104 if x == nil {
105 return dflt 105 return dflt
106 } 106 }
107 return x.(string) 107 return x.(string)
108 } 108 }
LEFTRIGHT

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