master
stable/2023.1
stable/zed
stable/wallaby
stable/train
stable/xena
stable/yoga
stable/ussuri
stable/victoria
stable/stein
stable/rocky
23.0.0.0rc1
20.0.1
queens-eol
wallaby-em
22.0.0
22.0.0.0rc1
pike-eol
19.0.1
victoria-em
21.0.0
21.0.0.0rc1
18.1.0
ussuri-em
20.0.0
20.0.0.0rc1
17.0.1
ocata-eol
train-em
16.0.2
19.0.0
19.0.0.0rc2
19.0.0.0rc1
stein-em
18.0.0
18.0.0.0rc1
17.0.0
16.0.1
15.0.1
17.0.0.0rc2
17.0.0.0rc1
rocky-em
14.2.0
queens-em
13.0.4
13.0.3
16.0.0
16.0.0.0rc2
16.0.0.0rc1
pike-em
12.0.3
ocata-em
15.0.0
14.1.0
15.0.0.0rc2
15.0.0.0rc1
14.0.1
12.0.2
13.0.2
14.0.0
14.0.0.0rc2
14.0.0.0rc1
12.0.1
11.0.4
13.0.1
14.0.0.0b3
14.0.0.0b2
14.0.0.0b1
13.0.0
13.0.0.0rc2
13.0.0.0rc1
13.0.0.0b3
13.0.0.0b2
newton-eol
13.0.0.0b1
12.0.0
12.0.0.0rc2
12.0.0.0rc1
12.0.0.0b3
10.0.3
11.0.3
mitaka-eol
10.0.2
12.0.0.0b2
11.0.2
11.0.1
12.0.0.0b1
11.0.0
11.0.0.0rc1
9.3.0
10.0.1
11.0.0.0b3
11.0.0.0b2
liberty-eol
11.0.0.0b1
10.0.0
10.0.0.0rc3
10.0.0.0rc2
9.2.0
10.0.0.0rc1
10.0.0.0b3
10.0.0.0b2
9.1.0
10.0.0.0b1
8.1.2
9.0.2
9.0.1
kilo-eol
2015.1.4
9.0.0
9.0.0.0rc3
9.0.0.0rc2
9.0.0.0rc1
8.1.0
9.0.0.0b3
2015.1.3
9.0.0.0b2
8.0.1
juno-eol
9.0.0.0b1
2014.2.4
8.0.0
2015.1.2
8.0.0.0rc2
8.0.0.0rc1
8.0.0.0b3
8.0.0.0b2
2015.1.1
icehouse-eol
8.0.0.0b1
2014.1.5
8.0.0a0
2015.1.0
2015.1.0rc2
2014.2.3
2015.1.0rc1
2015.1.0b3
2014.1.4
2014.2.2
2015.1.0b2
2015.1.0b1
2014.2.1
2014.2
2014.2.rc2
2014.1.3
2014.2.rc1
havana-eol
2013.2.4
2014.2.b3
2014.1.2.1
2014.1.2
2014.2.b2
2014.2.b1
2014.1.1
2014.1
2014.1.rc2
2013.2.3
grizzly-eol
2014.1.rc1
2013.1.5
2014.1.b3
2013.2.2
2014.1.b2
2013.2.1
2014.1.b1
folsom-eol
2013.1.4
2013.2
2013.2.rc4
2013.2.rc3
2013.2.rc2
2013.2.rc1
2013.2.b3
2013.1.3
2013.2.b2
2013.1.2
2013.2.b1
2013.1.1
essex-eol
diablo-eol
2012.2.4
2013.1
2013.1.rc3
2013.1.rc2
2013.1.rc1
2013.1.g3
2012.2.3
grizzly-2
2012.2.1
grizzly-1
2012.1.3
2012.2
folsom-rc2
folsom-rc1
folsom-3
2012.1.2
folsom-2
2012.1.1
folsom-1
2012.1
essex-rc2
essex-rc1
2011.3
2011.3.1
essex-1
essex-2
essex-3
essex-4
${ noResults }
3 Commits (c065366978134a8a0ef46d6869615f443564dab9)
Author | SHA1 | Message | Date |
---|---|---|---|
![]() |
6e6230f75c |
Remove unused LOG
This is to remove unused LOG to keep code clean. Change-Id: I2f45e1590eae8be4f530182f92588b5d9b9b9215 |
7 years ago |
![]() |
d9c6b50a3a |
Replace keystone.common.config with keystone.conf package
keystone.common.config is 1200+ lines of super dense, merge-conflict prone, difficult to navigate, and finicky to maintain code. Let's follow nova's lead and break it down into more manageable modules. This patch creates a new Python package, keystone.conf, and moves all of our configuration options into it, mirroring nova's nova.conf package. There are a couple special modules in keystone.conf introduced here as well: - keystone.conf.__init__: This causes all of Keystone options to be registered on import, so consumers of keystone.conf don't have races with config initialization code while trying to use oslo_config.cfg.CONF directly (keystone.conf replaces all uses for oslo_config.cfg.CONF in keystone). - keystone.conf.base: Keystone's [DEFAULT] group options. I'd prefer this to be called 'default.py', but I'm just copying nova's lead here. - keystone.conf.opts: The entry point for oslo.config itself. - keystone.conf.constants: There are a few constants (deprecation messages, default paths, etc) that are used by multiple configuration modules, so they need to live in a common place. Change-Id: Ia3daffe3fef111b42de203762e966cd14d8927e2 |
7 years ago |
![]() |
bdeee9cc15 |
Move the assignment abstract base class out of core
This patch moves the assignment abstract base class out of core and into backends/base.py This removes dependencies where backend code references code in the core. The reasoning being that the core should know about the backend interface, but the backends should not know anything about the core (separation of concerns). And part of the risk here is a potential for circular dependencies. Partial-Bug: #1563101 Change-Id: Ie507b61044ad32ecaac26901c1bcd0a0c17bd381 |
7 years ago |