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

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

Issue 6117064: environs: add UploadTools method
Left Patch Set: environs: add UploadTools method Created 12 years, 11 months ago
Right Patch Set: environs: add UploadTools method Created 12 years, 11 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 | « environs/dummy/environs.go ('k') | environs/interface.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 ec2 1 package ec2
2 2
3 import ( 3 import (
4 "bytes" 4 "bytes"
5 "fmt" 5 "fmt"
6 "io" 6 "io"
7 "io/ioutil" 7 "io/ioutil"
8 "launchpad.net/goamz/s3" 8 "launchpad.net/goamz/s3"
9 "launchpad.net/goyaml" 9 "launchpad.net/goyaml"
10 "launchpad.net/juju/go/version" 10 "launchpad.net/juju/go/version"
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 return nil 94 return nil
95 } 95 }
96 return err 96 return err
97 } 97 }
98 98
99 func (e *environ) bucket() *s3.Bucket { 99 func (e *environ) bucket() *s3.Bucket {
100 return e.s3.Bucket(e.config.bucket) 100 return e.s3.Bucket(e.config.bucket)
101 } 101 }
102 102
103 func (*environ) UploadTools(r io.Reader, length int64, version version.Version) error { 103 func (*environ) UploadTools(r io.Reader, length int64, version version.Version) error {
104 » return fmt.Errorf("ec2 environ does not support executable upload") 104 » return fmt.Errorf("ec2 environment does not support executable upload")
105 } 105 }
LEFTRIGHT

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