yahoo-eng-team team mailing list archive
-
yahoo-eng-team team
-
Mailing list archive
-
Message #41808
[Bug 1304253] Re: Horizon requires pbr at runtime
I think this is a larger OpenStack issue and not for Horizon to solve
independently. You can't really do much Horizon without OpenStack, the
same is not true of swift.
** Changed in: horizon
Status: Confirmed => Won't Fix
--
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1304253
Title:
Horizon requires pbr at runtime
Status in OpenStack Dashboard (Horizon):
Won't Fix
Bug description:
The only occurance of pbr is:
grep -r 'pbr' *
version.py:import pbr.version
version.py:version_info = pbr.version.VersionInfo('horizon')
That can be replaced by something like this:
class VersionInfo(object):
release = "2014.1"
version = "1"
def version_string(self):
return self.version
def release_string(self):
return self.release
version_info = VersionInfo()
To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1304253/+subscriptions
References