Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
resource/api/server: move UnitResourceHandler to public api/server package #4688
Conversation
davecheney
added some commits
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 ae58617
into
juju:master
Mar 11, 2016
davecheney
deleted the
davecheney:resource-api-merge-two-servers
branch
Mar 11, 2016
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 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
The resources' API had two http handlers, one for services one for units, implemented in two different ways one living inside a private (whatever that means) package. This meant the apiserver had a dependency on apiserver/common via it's import of resources/api/private/server even though the type it was importing did not have anything to do with this transitive dependency.
This change moves both handlers to the public resources/api/server package, renaming them to something more descriptive.
(Review request: http://reviews.vapour.ws/r/4127/)