Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
apiserver/common: move RestoreError to resource/api #4691
Conversation
davecheney
added some commits
Mar 11, 2016
davecheney
changed the title from
apiserver/commoni: move RestoreError to resource/api
to
apiserver/common: move RestoreError to resource/api
Mar 11, 2016
|
$$JFDI$$ |
|
Status: merge request accepted. Url: http://juju-ci.vapour.ws:8080/job/github-merge-juju |
added a commit
that referenced
this pull request
Mar 11, 2016
jujubot
merged commit cc383e1
into
juju:master
Mar 11, 2016
davecheney
deleted the
davecheney:resource-api-move-apiserver-common-restoreerror
branch
Mar 11, 2016
davecheney
restored the
davecheney:resource-api-move-apiserver-common-restoreerror
branch
Mar 11, 2016
davecheney
deleted the
davecheney:resource-api-move-apiserver-common-restoreerror
branch
Mar 11, 2016
davecheney
restored the
davecheney:resource-api-move-apiserver-common-restoreerror
branch
Mar 11, 2016
kat-co
reviewed
Mar 11, 2016
| @@ -14,6 +14,7 @@ import ( | ||
| "github.com/juju/juju/apiserver/params" | ||
| "github.com/juju/juju/payload" | ||
| "github.com/juju/juju/payload/api" | ||
| + resourcesapi "github.com/juju/juju/resource/api" |
added a commit
to ericsnowcurrently/juju
that referenced
this pull request
Mar 17, 2016
added a commit
to ericsnowcurrently/juju
that referenced
this pull request
Mar 21, 2016
added a commit
to ericsnowcurrently/juju
that referenced
this pull request
Mar 29, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
davecheney commentedMar 11, 2016
RestoreError is only used by the resources and payload apis, it is not part of the common api.
Moving RestoreError to resource/api enables further refactoring of the helpers and constants inside apiserver/common and resource/api, moving as much of the support logic for RestoreError out of apiserver/common.
(Review request: http://reviews.vapour.ws/r/4130/)