Merge lp:~cmars/juju-core/1.14-azure-compile-error into lp:juju-core/1.14

Proposed by Casey Marshall
Status: Rejected
Rejected by: John A Meinel
Proposed branch: lp:~cmars/juju-core/1.14-azure-compile-error
Merge into: lp:juju-core/1.14
Diff against target: 12 lines (+1/-1)
1 file modified
provider/azure/storage.go (+1/-1)
To merge this branch: bzr merge lp:~cmars/juju-core/1.14-azure-compile-error
Reviewer Review Type Date Requested Status
John A Meinel Disapprove
Review via email: mp+189674@code.launchpad.net

Description of the change

Noticed a compile error in the azure storage provider.

To post a comment you must log in.
Revision history for this message
John A Meinel (jameinel) wrote :

Thanks, I honestly can't say how 1.14 ended up with this compile error. Perhaps we weren't managing the 1.14 branch with the bot yet.

I don't think there will be any future releases from this branch, but might as well allow it to build.

review: Approve
Revision history for this message
John A Meinel (jameinel) wrote :

Actually, this is only a compile error because of a newer gwacl version. The one used for the 1.14 series is older and the function GetAnonymousURL did not used to return an error.

The correct version to use for juju-1.14.1 is tagged "juju-1.14.1" in the lp:gwacl tree.

If you do "bzr diff -r tag:juju-1.14.1..-1" in lp:gwacl you can see they changed the signature. So not landing this as it would *break* building the 1.14 series with the original dependencies.

review: Disapprove

Unmerged revisions

1752. By Casey Marshall

Fix compile error in azureStorage.URL

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'provider/azure/storage.go'
2--- provider/azure/storage.go 2013-08-26 06:44:01 +0000
3+++ provider/azure/storage.go 2013-10-07 17:43:18 +0000
4@@ -93,7 +93,7 @@
5 if context.Key != "" {
6 // 10 years should be good enough.
7 expires := time.Now().AddDate(10, 0, 0)
8- return context.GetAnonymousFileURL(storage.getContainer(), name, expires), nil
9+ return context.GetAnonymousFileURL(storage.getContainer(), name, expires)
10 }
11 return context.GetFileURL(storage.getContainer(), name), nil
12 }

Subscribers

People subscribed via source and target branches

to all changes: