*** angdraug has quit IRC | 00:02 | |
*** satroutr has joined #openstack-dev | 00:02 | |
*** yamahata has joined #openstack-dev | 00:03 | |
*** SumitNaiksatam has quit IRC | 00:05 | |
*** dims has quit IRC | 00:07 | |
*** satroutr has quit IRC | 00:07 | |
*** achampion has joined #openstack-dev | 00:08 | |
*** thingee is now known as thingee_zzz | 00:11 | |
*** jorisroovers has quit IRC | 00:14 | |
*** nachi1 has joined #openstack-dev | 00:14 | |
reed | russellb, draft blog post for the discussion about blueprints. Please check that I have not subverted completely your suggestions https://etherpad.openstack.org/p/t5sXSuEGU9 | 00:14 |
---|---|---|
bknudson | morganfainberg: https://review.openstack.org/#/c/51688/ | 00:22 |
morganfainberg | bknudson, ah nice. i'll take a gander in a few minutes. | 00:22 |
morganfainberg | bknudson, that will be super nice to have in | 00:23 |
*** sarob has quit IRC | 00:23 | |
bknudson | morganfainberg: I was looking at some refactoring and this would be great to have. | 00:24 |
bknudson | unfortunately, -1. | 00:24 |
*** sarob has joined #openstack-dev | 00:24 | |
morganfainberg | bknudson, totally agree, i already see some -1's . | 00:24 |
morganfainberg | bknudson, i bet you're hitting the same ones i'm seeing ;) | 00:24 |
*** vkmc has joined #openstack-dev | 00:26 | |
*** vkmc has quit IRC | 00:26 | |
*** vkmc has joined #openstack-dev | 00:26 | |
jamielennox | morganfainberg: what's happening here: https://review.openstack.org/#/c/53964/3/keystone/tests/test_cache.py ? | 00:28 |
morganfainberg | jamielennox, if the test_overrides has caching globally set to False, that test fails. | 00:28 |
morganfainberg | jamielennox, it is directly testing the cache layer and shouldn't care about the test_overrides | 00:28 |
*** sarob has quit IRC | 00:28 | |
jamielennox | so why isn't it a candidate for skip_if_cache_disabled? | 00:28 |
morganfainberg | jamielennox, because it tests the generated method for SHOULD_CACHE | 00:29 |
morganfainberg | jamielennox, not testing something that is cached | 00:29 |
*** singhs has quit IRC | 00:29 | |
*** matsuhashi has joined #openstack-dev | 00:29 | |
jamielennox | morganfainberg: fair enough | 00:30 |
jamielennox | CONF is regenerated for each test isn't it | 00:30 |
morganfainberg | jamielennox, think of test_cache as the same thing as test_backend_memcache. if you disable memcache test_backend_memcache shouldn't be skipped (sorta decent example) | 00:30 |
jamielennox | yea, i'm sure it is | 00:30 |
morganfainberg | jamielennox, it should be. otherwise a lot of other things would be broken | 00:30 |
jamielennox | yep | 00:30 |
morganfainberg | i've also earmarked the skip ipv6 thing to switch to a decorator. | 00:31 |
jamielennox | any reason to use setattr there? | 00:31 |
*** rongze has joined #openstack-dev | 00:31 | |
jamielennox | what's wrong with jsut CONF.cache.enabled = True? | 00:31 |
morganfainberg | jamielennox, hrm. well at least with the 'caching' attribute, it doens't exist before that method. i guess you could do conf.cache.enabled = True. | 00:32 |
*** novas0x2a|laptop has quit IRC | 00:32 | |
bknudson | morganfainberg: posted my comments on https://review.openstack.org/#/c/51688/ -- we can compare. | 00:32 |
morganfainberg | bknudson, i'll look at yours, once i get mine published. | 00:33 |
morganfainberg | bknudson, still looking at it. | 00:33 |
jamielennox | or better i guess would be self.opt_in_group('cache', enabled=True, caching=False) | 00:33 |
*** fifieldt_ has joined #openstack-dev | 00:35 | |
*** rongze has quit IRC | 00:37 | |
jamielennox | bknudson: if you get a chance can you have a look at the updated discovery patch | 00:37 |
morganfainberg | bknudson, we want to have all controllers explicity define their "requirements"? or is the inheritance sufficient? (looking at your comment on line 24 https://review.openstack.org/#/c/51688/6/keystone/contrib/endpoint_filter/controllers.py), v3controller inherits from v2, and v2controller has the decorator for assignment_api on it | 00:37 |
bknudson | morganfainberg: I don't think inheritance is sufficient. | 00:37 |
*** joesavak has joined #openstack-dev | 00:37 | |
bknudson | if it's used directly it should explicitly have requirement | 00:38 |
bknudson | I realize we're not consistent in this and could clean up. | 00:38 |
morganfainberg | bknudson, i'm fine with that take on it, i like things being explicit, but we rely on inheritance in a lot of places. so something to earmark for a cleanup patch | 00:38 |
jamielennox | bknudson: i was thinking pretty much the same thing as your outline. I have left a few things out that i don't think we need to expose straight away, i've also reused the factory object concept, i have a scenario where i think it will be useful, but i'm not sure because you should be instatiating clients from the discovery object that should be able to take care of that for you | 00:39 |
morganfainberg | honestly, i'd rather yank the decorator off the controllers themselves. | 00:39 |
bknudson | jamielennox: ok, this should be interesting! | 00:39 |
jamielennox | bknudson: the discovery object is a good idea - but if i'd just kept my mouth shut it would have been merged by now | 00:40 |
bknudson | jamielennox: the part that I had a question about, and what I had in my design, was that the application is written against a specific version. | 00:40 |
bknudson | the application doesn't interface directly with the keystone rest api, | 00:41 |
bknudson | it's using the keystone python api | 00:41 |
jamielennox | bknudson: right but that is a requirements.txt issue | 00:41 |
*** krotscheck has quit IRC | 00:41 | |
bknudson | which it's either going to be written to work with the v3 client or the v2 client (or v4 client) | 00:41 |
*** vuil has quit IRC | 00:41 | |
bknudson | you can't put in requirements.txt that this application only supports v3. | 00:41 |
bknudson | or that it requires the server to support v3 and v2 isn't enough. | 00:42 |
jamielennox | no, but that should be handled by get_client(version=(3,0)) | 00:42 |
jamielennox | or create_client i think i called it | 00:43 |
jamielennox | whether the keystoneclient has support for v4 or v2 when we deprecate it will be a requirements.txt issue, everything else can be handled by available_versions or by providing a minimum to create_client | 00:44 |
*** SumitNaiksatam has joined #openstack-dev | 00:46 | |
*** SumitNaiksatam has quit IRC | 00:47 | |
*** dims has joined #openstack-dev | 00:49 | |
*** SumitNaiksatam has joined #openstack-dev | 00:49 | |
*** xarses has quit IRC | 00:49 | |
*** quade has quit IRC | 00:55 | |
*** ykhodork has quit IRC | 00:56 | |
*** dsantos_ has quit IRC | 00:57 | |
*** tellesnobrega has quit IRC | 00:57 | |
*** tellesnobrega has joined #openstack-dev | 00:58 | |
*** fandikurnia01 has quit IRC | 00:59 | |
*** dsantos_ has joined #openstack-dev | 01:00 | |
*** galstrom_zzz is now known as galstrom | 01:01 | |
*** glenng has quit IRC | 01:01 | |
*** reed has quit IRC | 01:02 | |
*** nosnos has joined #openstack-dev | 01:05 | |
*** joesavak has quit IRC | 01:05 | |
*** nermina has quit IRC | 01:06 | |
*** matsuhashi has quit IRC | 01:11 | |
*** stevemar has joined #openstack-dev | 01:12 | |
*** matsuhashi has joined #openstack-dev | 01:12 | |
*** buzztroll has quit IRC | 01:15 | |
*** xchu has joined #openstack-dev | 01:15 | |
*** kui has joined #openstack-dev | 01:15 | |
*** buzztroll has joined #openstack-dev | 01:15 | |
*** mikeoutland has joined #openstack-dev | 01:17 | |
*** nermina has joined #openstack-dev | 01:17 | |
*** vkmc has quit IRC | 01:17 | |
*** vkmc has joined #openstack-dev | 01:18 | |
*** buzztroll has quit IRC | 01:19 | |
morganfainberg | jamielennox, ping | 01:20 |
jamielennox | morganfainberg: yup | 01:20 |
morganfainberg | jamielennox, just commented on your comment of https://review.openstack.org/#/c/54652/ figured i'd hit you up so we can be in agreement ;) | 01:20 |
morganfainberg | jamielennox, easier to do in-real time (ish) yanno | 01:21 |
jamielennox | yep | 01:21 |
morganfainberg | please tell me if i'm being a bit insane. i'm content to be told that :) | 01:21 |
*** mikeoutland has quit IRC | 01:21 | |
*** mikeoutland has joined #openstack-dev | 01:22 | |
jamielennox | yes we may as well bring in all of fixtures/ the only reason i wasn't sure is that fixtures/lockutils.py has a dep on openstack.common.lockutils | 01:22 |
morganfainberg | hence why i proposed the alternative, only pull in what we are really using | 01:23 |
jamielennox | which has: from openstack.common import fileutils | 01:23 |
jamielennox | from openstack.common.gettextutils import _ # noqa | 01:23 |
jamielennox | from openstack.common import local | 01:23 |
jamielennox | from openstack.common import log as logging | 01:23 |
jamielennox | oops, shouldn't have pasted that | 01:23 |
*** twoputt has quit IRC | 01:23 | |
morganfainberg | jamielennox, lol | 01:23 |
morganfainberg | jamielennox, at least it was only a couple lines... | 01:23 |
*** mikeoutland has quit IRC | 01:23 | |
*** mikeoutland has joined #openstack-dev | 01:24 | |
jamielennox | anyway, i'd like to bring in all of fixtures but i'm not sure how big the oslo sync would be for it | 01:24 |
*** kui has quit IRC | 01:24 | |
*** vladikr has quit IRC | 01:24 | |
morganfainberg | i think it's about 7-8 files total | 01:24 |
*** twoputt_ has quit IRC | 01:24 | |
morganfainberg | that were updated according to dstanek | 01:24 |
jamielennox | and i don't think you can do a negative (all of fixtures except lockutils) | 01:24 |
*** anderstj has quit IRC | 01:24 | |
morganfainberg | no i'd say we either only grab what we are using moxstub _or_ everything and deal with the fallout | 01:25 |
bknudson | we could probably use lockutils to get parallel testing working. | 01:25 |
morganfainberg | bknudson, ++ | 01:25 |
*** glenng has joined #openstack-dev | 01:25 | |
*** Artpicre has quit IRC | 01:25 | |
morganfainberg | i prefer to do the full fixtures if we were to pick one. but it might require some extra massaging | 01:25 |
jamielennox | bknudson: it's not working? | 01:26 |
*** colinmcnamara has quit IRC | 01:26 | |
bknudson | jamielennox: parallel testing in keystone doesn't work | 01:26 |
*** mikeoutland has quit IRC | 01:26 | |
jamielennox | morganfainberg: i'd say take it all | 01:26 |
bknudson | checks out keystoneclient | 01:26 |
morganfainberg | jamielennox, no, we cannot paralell test due to how we use our db (sqlite) and the keystoneclient. | 01:26 |
bknudson | creates database | 01:26 |
*** nermina has quit IRC | 01:26 | |
bknudson | creates certificates? | 01:26 |
morganfainberg | that too | 01:26 |
*** anderstj has joined #openstack-dev | 01:26 | |
jamielennox | client shouldn't be an issue, | 01:26 |
morganfainberg | but certs _could_ be fixed more easily than the other two | 01:27 |
morganfainberg | jamielennox it's the checkout that is the issue | 01:27 |
*** glenng1 has joined #openstack-dev | 01:27 | |
jamielennox | can't we simply create a new random named db per runner for the other? | 01:27 |
morganfainberg | jamielennox, likely, but we haven't done it yet. | 01:27 |
*** xarses has joined #openstack-dev | 01:27 | |
jamielennox | i don't *think* certificates is an issue | 01:28 |
*** mrda has quit IRC | 01:28 | |
morganfainberg | jamielennox, iirc certificate generation is not threadsafe/parallel safe with the cert repo mechanism (default) | 01:28 |
morganfainberg | it uses explicit incrementing ids and would c ause colissions | 01:28 |
morganfainberg | it's one of those "do this once before anything else..." | 01:29 |
morganfainberg | and we'd be fine | 01:29 |
jamielennox | is there anyway to do like process runner affinity in testr - that's the cheap way out | 01:29 |
lifeless | yes | 01:29 |
lifeless | tempest does that | 01:29 |
lifeless | you define a grouping regex in .testr.conf | 01:29 |
morganfainberg | jamielennox, i think just making a tmpdir for storing things per runner would _mostly_ solve the issues. | 01:29 |
morganfainberg | lifeless, ah. nice. | 01:29 |
lifeless | but it is better to just make the tests concurrency safe if you can | 01:30 |
* morganfainberg takes notes. | 01:30 | |
lifeless | e.g. unique working directories per test | 01:30 |
morganfainberg | lifeless, or per runner? | 01:30 |
lifeless | which there are Fixtures to help you with | 01:30 |
*** glenng has quit IRC | 01:30 | |
lifeless | morganfainberg: test | 01:30 |
morganfainberg | lifeless, ok | 01:30 |
bknudson | we can't check out the keystoneclient for every test! | 01:30 |
jamielennox | lifeless: always but for at least the client checkout even with a fixture we would need to be careful with that | 01:30 |
morganfainberg | that was the only exception i was going to raise | 01:31 |
jamielennox | bknudson: we don't need to | 01:31 |
morganfainberg | bknudson, ++ | 01:31 |
clarkb | bknudson: you shouldn't check out keystone client at all... | 01:31 |
clarkb | but I think we lost that battle long ago | 01:31 |
jamielennox | clarkb: ++ | 01:31 |
bknudson | where are we going to get keystoneclient from? | 01:31 |
morganfainberg | clarkb, don't we have a discussion pending to get that kind of testing into tempest? | 01:31 |
clarkb | morganfainberg: maybe? | 01:31 |
clarkb | bknudson: you just don't | 01:31 |
clarkb | bknudson: it is the wrong place for those tests to live | 01:31 |
lifeless | bknudson: unit tests shouldn't be checking out code anyway | 01:31 |
clarkb | and cause problems | 01:31 |
jamielennox | bknudson: each client is checked out into a folder per version - all we need to ensure is that the checkout happens prior to those particular tests running | 01:31 |
lifeless | whats this 'checkout the client' thing all about ? | 01:31 |
morganfainberg | lifeless, it verifies client versions against the api(s) | 01:32 |
*** sdake has joined #openstack-dev | 01:32 | |
morganfainberg | lifeless, bitrot type tests. done as unit tests | 01:32 |
morganfainberg | makes sure we don't break compat. (master vs released client, etc) | 01:32 |
lifeless | morganfainberg: so +1 on those tests existing, but surely they are integration tests -> tempest. | 01:32 |
morganfainberg | lifeless, i would agree. | 01:33 |
lifeless | if you say but | 01:33 |
lifeless | I will laugh | 01:33 |
bknudson | lifeless: https://github.com/openstack/keystone/blob/master/keystone/tests/core.py#L103 | 01:33 |
bknudson | https://github.com/openstack/keystone/blob/master/keystone/tests/test_keystoneclient.py#L53 | 01:33 |
*** rongze has joined #openstack-dev | 01:33 | |
lifeless | anyhow, testresources to get the client checked out; that will maintain state for you across tests in one runner | 01:33 |
lifeless | add a unique working dir for data storage for certs etc per test | 01:34 |
lifeless | should be fine | 01:34 |
morganfainberg | lifeless, that seems like the lowest barrier to entry. then, work on getting it into tempest (or wherever it is _really_ suppoed to live) | 01:34 |
morganfainberg | after we get parallel tests working | 01:35 |
jamielennox | from memory there is none of this sort of testing happening within tempest at the moment though | 01:35 |
*** galstrom is now known as galstrom_zzz | 01:35 | |
*** vladikr has joined #openstack-dev | 01:36 | |
bknudson | we only have the one keystoneclient test proposed. | 01:36 |
bknudson | and that was auto-abandoned | 01:36 |
jamielennox | ayoung and i tried at one point to look into moving it, and there is no backward client version testing | 01:36 |
jamielennox | most people told us we just shouldn't be testing that sort of thing | 01:36 |
jamielennox | i was hoping this is at least part of what the keystoneclient & tempest session was about at summit | 01:37 |
morganfainberg | jamielennox, i fully disagree with that sentiment. (not testing it) | 01:37 |
bknudson | I think these tests are great. | 01:37 |
*** rongze has quit IRC | 01:37 | |
bknudson | if we want to maintain backwards compatibility then need to test for it. | 01:37 |
morganfainberg | i would be disappointed to see them removed. | 01:37 |
*** danwent has quit IRC | 01:37 | |
morganfainberg | bknudson, absolutely | 01:38 |
bknudson | (like if we need to do anything need to test for it) | 01:38 |
bknudson | unfortunately, the testing is in the server and not in the "client" | 01:38 |
bknudson | so we can merge things and wind up breaking keystone unit tests. | 01:38 |
jamielennox | honestly i'm kind of ambivalent, if the API is correct then it should work amongst different versions of the client, but we have them and we shouldn't loose them | 01:38 |
jamielennox | bknudson: it shouldn't live in the client | 01:39 |
lifeless | so for N-version testing | 01:39 |
lifeless | I'd suggest doing it as N tempest runs | 01:39 |
*** bpokorny has joined #openstack-dev | 01:39 | |
morganfainberg | jamielennox, honestly, my stance is to merrily -2 things that don't propose an alternative and remove the tests. | 01:39 |
morganfainberg | currently (at least) | 01:39 |
lifeless | running e.g. released nova-client + keystone-client etc etc against the commit being testing | 01:39 |
morganfainberg | lifeless, that makes too much sense ;). | 01:40 |
clarkb | I am not arguing that the tests shouldn't exist. fwiw. I am arguing that the unitests are the wrong place :) unittests shuold be well unittest | 01:40 |
lifeless | unittests should not test across unit borders | 01:40 |
bknudson | could probably have n-2 tests. | 01:40 |
morganfainberg | clarkb, i really want to see them treated as integration tests. not unit tests. | 01:40 |
jamielennox | lifeless: that's the other problem though we've got tests there for keystoneclient 0.11, which is over a year ago and so will fail the requirements of any modern novaclient etc | 01:40 |
clarkb | morganfainberg: ++ | 01:40 |
morganfainberg | clarkb, but until we have that structure in.... | 01:41 |
lifeless | jamielennox: I don't understand the problem. | 01:41 |
clarkb | ya | 01:41 |
clarkb | better to have something | 01:41 |
lifeless | jamielennox: I'm not suggesting wind back just keystoneclinent, I'm suggesting a tempest run where all the client libs are wound back to some point in time. | 01:41 |
jamielennox | lifeless: that sounds like a cross-project solution - i always like those more | 01:41 |
lifeless | jamielennox: surely if all the releases were contemperaneous they should be co-installable ? | 01:42 |
bknudson | the versions we test in keystone are master, 0.1.1 and essex-3 | 01:42 |
lifeless | jamielennox: so we'd be testing <new commit in some branch> with client libs that are forced old; and we wouldn't do that for new releases of client libs (naturally!) | 01:42 |
lifeless | but we might want to do the inverse: a tempest run with H, running tip client libs, for instance. | 01:43 |
bknudson | surprisingly, I haven't seen them fail, so changes are generally compatible. | 01:43 |
bknudson | also, note that our keystoneclient tests are really mostly testing server function. | 01:44 |
bknudson | keystoneclient was a handy way to test controllers | 01:44 |
morganfainberg | bknudson, still is. but ... not as relevant as tempest improves. | 01:44 |
bknudson | v3 uses webtest | 01:44 |
morganfainberg | and thart | 01:44 |
morganfainberg | that* | 01:44 |
jamielennox | anyway, something to talk about with the tempest folks | 01:45 |
bknudson | so we'd want to get webtest for v2 | 01:45 |
bknudson | and transfer as many of our tests as we can to v2 | 01:45 |
jamielennox | the point for now is that if we can do runner afinity then we can paralize tests | 01:45 |
morganfainberg | i think there is a tempest / infra / keystone session | 01:45 |
bknudson | transfer our keystoneclient server tests to webtest | 01:45 |
morganfainberg | at the summit. | 01:45 |
bknudson | then the keystoneclient tests can be just tests for keystoneclient function / compatibility | 01:45 |
jamielennox | bknudson: i agree with that, tests should not be accessing the controllers directly | 01:45 |
*** buzztroll has joined #openstack-dev | 01:46 | |
*** mrda has joined #openstack-dev | 01:46 | |
*** mriedem has joined #openstack-dev | 01:47 | |
lifeless | http://testrepository.readthedocs.org/en/latest/MANUAL.html#grouping-tests | 01:47 |
lifeless | jamielennox: morganfainberg: ^ | 01:47 |
*** fandikurnia01 has joined #openstack-dev | 01:47 | |
morganfainberg | lifeless, thanks! | 01:48 |
bknudson | lifeless: where's the fixtures? | 01:48 |
*** achampio1 has joined #openstack-dev | 01:48 | |
*** achampion has quit IRC | 01:49 | |
bknudson | https://pypi.python.org/pypi/testresources ? | 01:49 |
bknudson | "sample working trees for VCS systems, reference databases" | 01:50 |
bknudson | sounds familiar | 01:50 |
jamielennox | lifeless: so that is a regex for the entire suite though, if we specified simply like ^tests.keystoneclient.* - everything that doesn't match gets the standard treatment? | 01:50 |
lifeless | jamielennox: right | 01:50 |
*** melwitt has quit IRC | 01:50 | |
lifeless | jamielennox: the way it works is that the value of the match is used to build a group - all tests in the same group run on the same backend | 01:51 |
jamielennox | so does ^tests.keystoneclient.*|^test.keystone.db.* mean that client will be grouped with the db tests or that client tests are grouped and db tests are goruped? | 01:51 |
lifeless | jamielennox: things with no match are distributed to minimise test run time as usual. | 01:51 |
*** buzztroll has quit IRC | 01:51 | |
*** buzztroll has joined #openstack-dev | 01:51 | |
lifeless | that would not do what you want because each test would be fully matched and you'll get groups of 1 | 01:52 |
*** vkmc has quit IRC | 01:52 | |
lifeless | the sample regex - ([^\.]+\.)+ givena test like foo.bar.quux.method | 01:53 |
*** alop has joined #openstack-dev | 01:54 | |
lifeless | >>> re.match('([^\.]+\.)+', 'foo.bar.quux.method').groups() | 01:54 |
lifeless | ('quux.',) | 01:54 |
lifeless | so quux. becomes the group key | 01:54 |
*** bingbu has joined #openstack-dev | 01:54 | |
jamielennox | ok, so it will just mean messing around with the regexp for a bit to get it right | 01:55 |
*** buzztroll has quit IRC | 01:55 | |
lifeless | yarp | 01:55 |
jamielennox | thanks for that | 01:56 |
bknudson | I think we'll have 90% of the tests in a group... a lot use the db. | 01:56 |
*** fandikurnia01 has quit IRC | 01:57 | |
jamielennox | bknudson: but the db gets deleted and then regenerated for every test in that group, if we go the temp folder method it will be fine | 01:57 |
*** bknudson has left #openstack-dev | 01:57 | |
*** CaptTofu has quit IRC | 01:57 | |
clarkb | jamielennox: that is basically what nova does but it does it all in memory | 01:57 |
*** fandikurnia01 has joined #openstack-dev | 01:58 | |
clarkb | and iirc it loads a premigrated DB from disk into memory so you don't have to migrate for each tet | 01:58 |
*** CaptTofu has joined #openstack-dev | 01:58 | |
*** coolsvap has quit IRC | 01:58 | |
lifeless | jamielennox: possibly i'll need to improve the grouping code for you | 01:59 |
lifeless | jamielennox: but I hope not | 01:59 |
morganfainberg | clarkb, i think we use a "pristine" db and don't migrate each test. | 01:59 |
morganfainberg | but i'd need to 2x check | 01:59 |
jamielennox | clarkb: unfortunately there are some tests that we can't do without a disk db, from memory it's something to do with running the migrations then having the cursor closed before we can do checks on it | 02:00 |
*** CaptTofu has quit IRC | 02:00 | |
jamielennox | most of them are in memory though | 02:00 |
lifeless | jamielennox: | 02:00 |
lifeless | >>> re.search('\.(keystone)(?:client\.|\.db\.)', 'tests.keystone.db.foo.bar').groups() | 02:00 |
*** CaptTofu has joined #openstack-dev | 02:00 | |
lifeless | ('keystone',) | 02:00 |
lifeless | that looks like it will do what you want | 02:00 |
lifeless | >>> re.search('\.(keystone)(?:client\.|\.db\.)', 'tests.keystoneclient.db.foo.bar').groups() | 02:00 |
lifeless | ('keystone',) | 02:00 |
lifeless | >>> re.search('\.(keystone)(?:client\.|\.db\.)', 'tests.keystone.bar').groups() | 02:00 |
lifeless | Traceback (most recent call last): | 02:01 |
lifeless | File "<stdin>", line 1, in <module> | 02:01 |
lifeless | no match -> as desired | 02:01 |
lifeless | AttributeError: 'NoneType' object has no attribute 'groups' | 02:01 |
*** lnxnut_ has joined #openstack-dev | 02:01 | |
*** lnxnut has quit IRC | 02:01 | |
morganfainberg | lifeless, that looks about right | 02:01 |
jamielennox | lifeless: the names are a bit more complicated but we can go from there | 02:02 |
lifeless | I'm happy to add improvements to testr | 02:02 |
lifeless | let me know if it is all too hard | 02:02 |
jamielennox | i was just looking to see if i could essentially pick one or two classes by name and group them, so it's figuring out the regexp | 02:03 |
morganfainberg | jamielennox, if you need/want a second pair of eyes on any regexs let me know. happy to help | 02:03 |
*** lnxnut_ has quit IRC | 02:03 | |
morganfainberg | jamielennox, if you're taking this on that is. | 02:04 |
*** rongze has joined #openstack-dev | 02:04 | |
jamielennox | i was just thinking about 15 minutes ago i didn't realize we had a problem, now i think i have volunteered to fix it :) | 02:04 |
*** adalbas has joined #openstack-dev | 02:04 | |
*** erkules_ has joined #openstack-dev | 02:04 | |
morganfainberg | jamielennox, lol, if you don't want to i'll stick it on my pile to look at before hopping on the plane (i expect to be working on KVS refactor on the plane) | 02:05 |
*** erkules has quit IRC | 02:07 | |
*** changbl has quit IRC | 02:11 | |
*** rongze has quit IRC | 02:11 | |
*** changbl has joined #openstack-dev | 02:12 | |
*** singhs has joined #openstack-dev | 02:13 | |
*** sdake has quit IRC | 02:13 | |
*** changbl has quit IRC | 02:13 | |
*** lbragstad has joined #openstack-dev | 02:19 | |
*** mriedem has quit IRC | 02:20 | |
*** thingee_zzz is now known as thingee | 02:22 | |
*** rongze has joined #openstack-dev | 02:24 | |
*** sarob has joined #openstack-dev | 02:25 | |
*** mriedem has joined #openstack-dev | 02:28 | |
*** michchap has joined #openstack-dev | 02:29 | |
*** changbl has joined #openstack-dev | 02:30 | |
*** galstrom_zzz is now known as galstrom | 02:32 | |
*** mriedem has quit IRC | 02:35 | |
*** CaptTofu has quit IRC | 02:36 | |
*** CaptTofu has joined #openstack-dev | 02:37 | |
*** dims has quit IRC | 02:41 | |
*** colinmcnamara has joined #openstack-dev | 02:42 | |
*** paragan has joined #openstack-dev | 02:43 | |
*** paragan has joined #openstack-dev | 02:43 | |
*** mikeoutland has joined #openstack-dev | 02:50 | |
*** buzztroll has joined #openstack-dev | 02:51 | |
*** pablosan has joined #openstack-dev | 02:51 | |
*** buzztroll has quit IRC | 02:56 | |
*** dims has joined #openstack-dev | 02:56 | |
*** mikeoutland has quit IRC | 03:00 | |
*** mlavalle has joined #openstack-dev | 03:04 | |
*** mikeoutland has joined #openstack-dev | 03:09 | |
*** singhs has quit IRC | 03:09 | |
*** luisg has quit IRC | 03:11 | |
*** herndon has joined #openstack-dev | 03:11 | |
*** luisg has joined #openstack-dev | 03:11 | |
*** sthaha has joined #openstack-dev | 03:21 | |
*** enmand has quit IRC | 03:25 | |
*** tanisdl has quit IRC | 03:26 | |
*** jecarey has joined #openstack-dev | 03:29 | |
*** herndon has quit IRC | 03:30 | |
*** achampio1 is now known as achampion | 03:31 | |
*** guohliu has joined #openstack-dev | 03:31 | |
*** glenng1 has quit IRC | 03:32 | |
*** singhs has joined #openstack-dev | 03:33 | |
*** sarob has quit IRC | 03:36 | |
*** sarob has joined #openstack-dev | 03:36 | |
*** sarob has quit IRC | 03:41 | |
*** tonyha has joined #openstack-dev | 03:41 | |
*** souvik1 has joined #openstack-dev | 03:42 | |
*** mihgen has joined #openstack-dev | 03:43 | |
*** vipul is now known as vipul-away | 03:45 | |
*** mrda has quit IRC | 03:46 | |
*** neelashah has joined #openstack-dev | 03:47 | |
*** changbl has quit IRC | 03:47 | |
*** changbl has joined #openstack-dev | 03:48 | |
*** souvik2 has joined #openstack-dev | 03:49 | |
*** retr0h has quit IRC | 03:50 | |
*** retr0h has joined #openstack-dev | 03:51 | |
*** souvik1 has quit IRC | 03:51 | |
*** buzztroll has joined #openstack-dev | 03:51 | |
*** danwent has joined #openstack-dev | 03:51 | |
*** mrda has joined #openstack-dev | 03:52 | |
*** changbl has quit IRC | 03:54 | |
*** changbl has joined #openstack-dev | 03:54 | |
*** dims has quit IRC | 03:56 | |
*** nati_ueno has joined #openstack-dev | 03:56 | |
*** buzztroll has quit IRC | 03:56 | |
*** vuil has joined #openstack-dev | 03:56 | |
*** amcrn has quit IRC | 03:56 | |
*** souvik2 has quit IRC | 03:58 | |
*** dstanek has joined #openstack-dev | 03:59 | |
*** prekarat has joined #openstack-dev | 04:00 | |
*** aditirav has joined #openstack-dev | 04:00 | |
*** pmathews has joined #openstack-dev | 04:01 | |
*** fifieldt_ has quit IRC | 04:02 | |
*** fifieldt has joined #openstack-dev | 04:02 | |
*** sarob has joined #openstack-dev | 04:03 | |
*** changbl has quit IRC | 04:03 | |
*** MaxV has joined #openstack-dev | 04:03 | |
*** changbl has joined #openstack-dev | 04:03 | |
*** changbl has quit IRC | 04:04 | |
*** sumanthns has joined #openstack-dev | 04:05 | |
*** changbl has joined #openstack-dev | 04:05 | |
*** sarob has quit IRC | 04:05 | |
*** sarob has joined #openstack-dev | 04:05 | |
*** lbragstad has quit IRC | 04:07 | |
*** sarob has quit IRC | 04:10 | |
*** carl_baldwin has joined #openstack-dev | 04:12 | |
*** matsuhashi has quit IRC | 04:12 | |
*** jecarey has quit IRC | 04:12 | |
*** matsuhashi has joined #openstack-dev | 04:13 | |
*** pmathews has quit IRC | 04:16 | |
*** matsuhashi has quit IRC | 04:17 | |
*** nosnos has quit IRC | 04:17 | |
*** nosnos_ has joined #openstack-dev | 04:17 | |
*** sumanthns has quit IRC | 04:20 | |
*** nosnos_ has quit IRC | 04:22 | |
*** nosnos has joined #openstack-dev | 04:23 | |
*** aditirav_ has joined #openstack-dev | 04:24 | |
*** Mandell has quit IRC | 04:24 | |
*** carl_baldwin has quit IRC | 04:26 | |
*** nosnos has quit IRC | 04:26 | |
*** fungi has quit IRC | 04:26 | |
*** aditirav has quit IRC | 04:26 | |
*** aditirav_ is now known as aditirav | 04:26 | |
*** nosnos has joined #openstack-dev | 04:29 | |
*** ykhodork has joined #openstack-dev | 04:29 | |
*** fungi has joined #openstack-dev | 04:33 | |
*** nosnos_ has joined #openstack-dev | 04:33 | |
*** zaitcev has quit IRC | 04:34 | |
*** thingee is now known as thingee_zzz | 04:35 | |
*** cdub_ has quit IRC | 04:36 | |
*** sumanth has joined #openstack-dev | 04:36 | |
*** nosnos has quit IRC | 04:37 | |
*** rongze has quit IRC | 04:39 | |
*** aeperezt has quit IRC | 04:40 | |
*** souvik1 has joined #openstack-dev | 04:42 | |
*** colinmcnamara has quit IRC | 04:43 | |
*** colinmcnamara has joined #openstack-dev | 04:44 | |
*** colinmcnamara has quit IRC | 04:48 | |
*** aditirav has quit IRC | 04:49 | |
*** aditirav has joined #openstack-dev | 04:49 | |
*** buzztroll has joined #openstack-dev | 04:51 | |
*** mikeoutland has quit IRC | 04:53 | |
*** aditirav_ has joined #openstack-dev | 04:53 | |
*** galstrom is now known as galstrom_zzz | 04:55 | |
*** MaxV has quit IRC | 04:55 | |
*** buzztroll has quit IRC | 04:56 | |
*** aditirav has quit IRC | 04:57 | |
*** aditirav_ is now known as aditirav | 04:57 | |
*** sdake has joined #openstack-dev | 04:59 | |
*** neelashah has quit IRC | 05:00 | |
*** matsuhashi has joined #openstack-dev | 05:04 | |
*** aditirav has quit IRC | 05:04 | |
*** aditirav has joined #openstack-dev | 05:04 | |
*** jamespage has quit IRC | 05:05 | |
*** nachi1 has quit IRC | 05:09 | |
*** rongze has joined #openstack-dev | 05:10 | |
*** MaxV has joined #openstack-dev | 05:11 | |
*** HenryG has quit IRC | 05:13 | |
*** dstanek has quit IRC | 05:13 | |
*** xingchao has joined #openstack-dev | 05:15 | |
*** sarob has joined #openstack-dev | 05:16 | |
*** sarob_ has joined #openstack-dev | 05:18 | |
*** rongze has quit IRC | 05:19 | |
*** jayahn has joined #openstack-dev | 05:19 | |
*** sarob has quit IRC | 05:21 | |
*** topol has joined #openstack-dev | 05:25 | |
*** souvik1 has quit IRC | 05:25 | |
*** jayahn has quit IRC | 05:26 | |
*** nosnos_ has quit IRC | 05:28 | |
*** nosnos has joined #openstack-dev | 05:28 | |
*** ykhodork has quit IRC | 05:29 | |
*** anniec has joined #openstack-dev | 05:30 | |
*** anniec has quit IRC | 05:31 | |
*** chandankumar has quit IRC | 05:35 | |
*** nshaikh has joined #openstack-dev | 05:35 | |
*** buzztroll has joined #openstack-dev | 05:36 | |
*** yamahata has quit IRC | 05:37 | |
*** Anticimex has quit IRC | 05:38 | |
*** Anticimex has joined #openstack-dev | 05:38 | |
*** anniec has joined #openstack-dev | 05:39 | |
*** anniec has left #openstack-dev | 05:39 | |
*** chandankumar has joined #openstack-dev | 05:39 | |
*** doron_afk has quit IRC | 05:40 | |
*** pablosan has quit IRC | 05:44 | |
*** comay has quit IRC | 05:47 | |
*** kushal has joined #openstack-dev | 05:48 | |
*** MaxV has quit IRC | 05:50 | |
*** changbl has quit IRC | 05:51 | |
*** SergeyLukjanov has joined #openstack-dev | 05:53 | |
*** gongysh has joined #openstack-dev | 05:53 | |
*** yeylon__ has joined #openstack-dev | 05:55 | |
*** Daisy has joined #openstack-dev | 05:55 | |
*** anniec_ has joined #openstack-dev | 05:55 | |
*** cfriesen has quit IRC | 05:56 | |
*** satroutr has joined #openstack-dev | 06:00 | |
*** satroutr has quit IRC | 06:00 | |
*** nosnos_ has joined #openstack-dev | 06:06 | |
*** ArcTanSusan has joined #openstack-dev | 06:06 | |
*** djinni has quit IRC | 06:07 | |
*** nosnos has quit IRC | 06:08 | |
*** SergeyLukjanov has quit IRC | 06:08 | |
*** sdague has quit IRC | 06:08 | |
*** jeremyb has quit IRC | 06:09 | |
*** michchap has quit IRC | 06:10 | |
*** jorisroovers has joined #openstack-dev | 06:11 | |
*** rongze has joined #openstack-dev | 06:12 | |
*** sarob_ has quit IRC | 06:12 | |
*** sarob has joined #openstack-dev | 06:12 | |
*** michchap has joined #openstack-dev | 06:13 | |
*** sdague has joined #openstack-dev | 06:13 | |
*** michchap has quit IRC | 06:13 | |
*** djinni has joined #openstack-dev | 06:14 | |
*** michchap has joined #openstack-dev | 06:14 | |
*** ljjjustin has joined #openstack-dev | 06:14 | |
*** jorisroovers has quit IRC | 06:15 | |
*** jeremyb has joined #openstack-dev | 06:15 | |
*** rongze has quit IRC | 06:15 | |
*** SergeyLukjanov has joined #openstack-dev | 06:16 | |
*** sarob has quit IRC | 06:17 | |
*** rongze has joined #openstack-dev | 06:17 | |
*** MaxV has joined #openstack-dev | 06:18 | |
*** buzztroll has quit IRC | 06:20 | |
*** marun has joined #openstack-dev | 06:20 | |
*** buzztroll has joined #openstack-dev | 06:20 | |
*** rushiagr has joined #openstack-dev | 06:21 | |
*** jeremyb has quit IRC | 06:23 | |
*** jeremyb has joined #openstack-dev | 06:23 | |
*** marun_ has joined #openstack-dev | 06:25 | |
*** nplanel has quit IRC | 06:25 | |
*** buzztroll has quit IRC | 06:25 | |
*** marun has quit IRC | 06:25 | |
*** marun_ is now known as marun | 06:25 | |
*** rushiagr has quit IRC | 06:26 | |
*** denis_makogon has joined #openstack-dev | 06:27 | |
*** singhs has quit IRC | 06:27 | |
*** rushiagr has joined #openstack-dev | 06:30 | |
*** egallen has quit IRC | 06:31 | |
*** singhs has joined #openstack-dev | 06:32 | |
*** martyntaylor has joined #openstack-dev | 06:33 | |
*** aditirav_ has joined #openstack-dev | 06:34 | |
*** buzztroll has joined #openstack-dev | 06:36 | |
*** sushils has quit IRC | 06:37 | |
*** anujdeshpande has joined #openstack-dev | 06:37 | |
*** marios has quit IRC | 06:37 | |
*** aditirav has quit IRC | 06:37 | |
*** aditirav_ is now known as aditirav | 06:37 | |
*** marios has joined #openstack-dev | 06:37 | |
*** SergeyLukjanov has quit IRC | 06:37 | |
*** MaxV has quit IRC | 06:43 | |
*** MaxV has joined #openstack-dev | 06:44 | |
*** e0ne has joined #openstack-dev | 06:44 | |
*** MaxV has quit IRC | 06:48 | |
*** MaxV has joined #openstack-dev | 06:48 | |
*** SergeyLukjanov has joined #openstack-dev | 06:48 | |
*** tonyha has quit IRC | 06:49 | |
*** claxton has joined #openstack-dev | 06:50 | |
*** kbrierly has joined #openstack-dev | 06:50 | |
*** MaxV has quit IRC | 06:53 | |
*** mihgen has quit IRC | 06:53 | |
*** marun has quit IRC | 06:54 | |
*** yolanda has joined #openstack-dev | 06:56 | |
*** aditirav has quit IRC | 06:58 | |
*** aditirav has joined #openstack-dev | 06:58 | |
*** ljjjustin has quit IRC | 06:59 | |
*** ljjjustin has joined #openstack-dev | 07:05 | |
*** odyssey4me has joined #openstack-dev | 07:05 | |
*** yaguang has joined #openstack-dev | 07:09 | |
*** claxton has quit IRC | 07:10 | |
*** claxton has joined #openstack-dev | 07:10 | |
*** coolsvap has joined #openstack-dev | 07:13 | |
balar | I uninstalled and reinstalled (pip install lesscpy) - This creates /usr/local/lesscpy | 07:15 |
*** yaguang has quit IRC | 07:16 | |
*** vartom113 has joined #openstack-dev | 07:16 | |
*** fifieldt has quit IRC | 07:16 | |
*** yaguang has joined #openstack-dev | 07:17 | |
*** doron_afk has joined #openstack-dev | 07:19 | |
*** amerine has joined #openstack-dev | 07:21 | |
*** nosnos_ has quit IRC | 07:22 | |
*** nosnos has joined #openstack-dev | 07:22 | |
*** sarob has joined #openstack-dev | 07:23 | |
*** stevemar has quit IRC | 07:27 | |
*** sarob has quit IRC | 07:28 | |
*** topol has quit IRC | 07:30 | |
*** gmurphy has quit IRC | 07:31 | |
*** mrunge has joined #openstack-dev | 07:31 | |
*** mihgen has joined #openstack-dev | 07:32 | |
*** jcoufal has joined #openstack-dev | 07:32 | |
*** mihgen has quit IRC | 07:34 | |
*** e0ne has quit IRC | 07:34 | |
*** e0ne has joined #openstack-dev | 07:34 | |
*** avishayb has joined #openstack-dev | 07:34 | |
*** mrda has quit IRC | 07:35 | |
*** sushils has joined #openstack-dev | 07:36 | |
*** amerine has quit IRC | 07:36 | |
*** avishay has joined #openstack-dev | 07:37 | |
*** jprovazn has joined #openstack-dev | 07:39 | |
*** yamahata has joined #openstack-dev | 07:39 | |
*** SnowDust has joined #openstack-dev | 07:40 | |
*** rushiagr has quit IRC | 07:41 | |
*** jamespage has joined #openstack-dev | 07:41 | |
*** erkules_ is now known as erkules | 07:42 | |
*** rods has quit IRC | 07:44 | |
*** rushiagr has joined #openstack-dev | 07:45 | |
*** e0ne has quit IRC | 07:47 | |
*** e0ne has joined #openstack-dev | 07:47 | |
*** belmoreira has joined #openstack-dev | 07:48 | |
*** bauzas has joined #openstack-dev | 07:50 | |
*** e0ne has quit IRC | 07:51 | |
*** e0ne has joined #openstack-dev | 07:51 | |
*** ljjjustin has quit IRC | 07:51 | |
*** egallen has joined #openstack-dev | 07:53 | |
*** ArcTanSusan has quit IRC | 07:53 | |
*** xqueralt has joined #openstack-dev | 07:57 | |
*** ljjjustin has joined #openstack-dev | 07:57 | |
*** singhs has quit IRC | 07:57 | |
*** e0ne has quit IRC | 07:57 | |
*** e0ne has joined #openstack-dev | 07:58 | |
*** ArcTanSusan has joined #openstack-dev | 07:58 | |
*** jhesketh__ has quit IRC | 07:59 | |
*** xqueralt has quit IRC | 08:02 | |
*** e0ne has quit IRC | 08:02 | |
*** rods has joined #openstack-dev | 08:03 | |
*** boden has joined #openstack-dev | 08:03 | |
*** flaper87|afk is now known as flaper87 | 08:03 | |
*** corXi has joined #openstack-dev | 08:04 | |
*** prekarat has left #openstack-dev | 08:04 | |
*** prekarat has joined #openstack-dev | 08:04 | |
*** anniec_ has quit IRC | 08:06 | |
*** Daisy has quit IRC | 08:07 | |
*** blamar_ has joined #openstack-dev | 08:11 | |
*** davidhadas has quit IRC | 08:12 | |
*** blamar has quit IRC | 08:12 | |
*** blamar_ is now known as blamar | 08:12 | |
*** devvesa has joined #openstack-dev | 08:13 | |
*** matsuhashi has quit IRC | 08:14 | |
*** xqueralt has joined #openstack-dev | 08:16 | |
*** matsuhas_ has joined #openstack-dev | 08:17 | |
*** ArcTanSusan has quit IRC | 08:18 | |
*** SergeyLukjanov has quit IRC | 08:19 | |
*** xqueralt has quit IRC | 08:21 | |
*** xqueralt has joined #openstack-dev | 08:21 | |
*** shardy_afk is now known as shardy | 08:22 | |
*** MaxV has joined #openstack-dev | 08:23 | |
*** omachace has joined #openstack-dev | 08:26 | |
*** jistr has joined #openstack-dev | 08:28 | |
*** buzztroll has quit IRC | 08:30 | |
*** buzztroll has joined #openstack-dev | 08:31 | |
*** denis_makogon has quit IRC | 08:31 | |
*** aditirav_ has joined #openstack-dev | 08:34 | |
*** xingchao has quit IRC | 08:35 | |
*** xingchao has joined #openstack-dev | 08:35 | |
*** buzztroll has quit IRC | 08:35 | |
*** jorisroovers has joined #openstack-dev | 08:36 | |
*** aditirav has quit IRC | 08:37 | |
*** aditirav_ is now known as aditirav | 08:37 | |
*** ygbo has joined #openstack-dev | 08:39 | |
*** lsmola_ has joined #openstack-dev | 08:41 | |
*** jroovers has joined #openstack-dev | 08:42 | |
*** e0ne has joined #openstack-dev | 08:43 | |
*** jorisroovers has quit IRC | 08:44 | |
*** egallen has quit IRC | 08:45 | |
*** xingchao has quit IRC | 08:48 | |
*** che-arne has quit IRC | 08:53 | |
*** mindpixel has joined #openstack-dev | 08:53 | |
*** jruzicka has joined #openstack-dev | 08:54 | |
*** matsuhas_ has quit IRC | 08:54 | |
*** matsuhashi has joined #openstack-dev | 08:55 | |
*** safchain has joined #openstack-dev | 08:56 | |
*** zaneb has quit IRC | 08:58 | |
*** mmagr has joined #openstack-dev | 08:59 | |
*** mkerrin has joined #openstack-dev | 08:59 | |
*** yamahata has quit IRC | 08:59 | |
*** paragan has quit IRC | 08:59 | |
*** matsuhashi has quit IRC | 08:59 | |
*** rushiagr has quit IRC | 09:02 | |
*** matsuhashi has joined #openstack-dev | 09:02 | |
*** davidhadas has joined #openstack-dev | 09:03 | |
*** jhesketh has quit IRC | 09:03 | |
*** rushiagr has joined #openstack-dev | 09:03 | |
*** prekarat has quit IRC | 09:04 | |
*** tonyha has joined #openstack-dev | 09:07 | |
*** sahid has joined #openstack-dev | 09:07 | |
*** mrda has joined #openstack-dev | 09:08 | |
*** JordanP has joined #openstack-dev | 09:10 | |
*** yassine has joined #openstack-dev | 09:11 | |
*** rushiagr has left #openstack-dev | 09:11 | |
*** rushiagr2 has joined #openstack-dev | 09:12 | |
*** yamahata has joined #openstack-dev | 09:13 | |
*** ljjjustin has quit IRC | 09:18 | |
*** prekarat has joined #openstack-dev | 09:19 | |
*** eglynn has joined #openstack-dev | 09:20 | |
*** Alexei_987 has joined #openstack-dev | 09:22 | |
*** pixelb has joined #openstack-dev | 09:22 | |
*** lucasagomes has joined #openstack-dev | 09:22 | |
*** lucasagomes has left #openstack-dev | 09:22 | |
*** exed has joined #openstack-dev | 09:22 | |
*** buzztroll has joined #openstack-dev | 09:22 | |
*** DinaBelova has joined #openstack-dev | 09:23 | |
*** danpb has joined #openstack-dev | 09:24 | |
*** matsuhashi has quit IRC | 09:28 | |
*** matsuhashi has joined #openstack-dev | 09:29 | |
*** jpich has joined #openstack-dev | 09:29 | |
*** derekh has joined #openstack-dev | 09:30 | |
*** tonyha has quit IRC | 09:32 | |
*** mlavalle has quit IRC | 09:33 | |
*** matsuhashi has quit IRC | 09:33 | |
*** nshaikh has left #openstack-dev | 09:35 | |
*** arezmerita has quit IRC | 09:35 | |
*** Nikolay_1t has joined #openstack-dev | 09:36 | |
*** fandikurnia01 has quit IRC | 09:42 | |
*** fandikurnia01 has joined #openstack-dev | 09:42 | |
*** matsuhashi has joined #openstack-dev | 09:42 | |
*** xchu has quit IRC | 09:45 | |
*** ndipanov_gone is now known as ndipanov | 09:46 | |
*** guohliu has quit IRC | 09:49 | |
*** exed has quit IRC | 09:51 | |
*** mkollaro has joined #openstack-dev | 09:52 | |
*** exed has joined #openstack-dev | 09:52 | |
*** guohliu has joined #openstack-dev | 09:53 | |
*** mindpixel has quit IRC | 09:53 | |
*** jtomasek has joined #openstack-dev | 09:54 | |
*** buzztrol_ has joined #openstack-dev | 09:54 | |
*** buzztroll has quit IRC | 09:56 | |
*** yamahata has quit IRC | 09:57 | |
*** buzztrol_ has quit IRC | 09:59 | |
*** davidhadas_ has joined #openstack-dev | 10:01 | |
*** davidhadas has quit IRC | 10:02 | |
*** faramir1 has quit IRC | 10:02 | |
*** matsuhashi has quit IRC | 10:04 | |
*** bingbu has quit IRC | 10:04 | |
*** avishayb has quit IRC | 10:05 | |
*** mrda has quit IRC | 10:06 | |
*** matsuhashi has joined #openstack-dev | 10:08 | |
*** claxton has quit IRC | 10:12 | |
*** matsuhashi has quit IRC | 10:12 | |
*** sahid has quit IRC | 10:14 | |
*** claxton has joined #openstack-dev | 10:17 | |
*** mindpixel has joined #openstack-dev | 10:18 | |
*** eglynn_ has joined #openstack-dev | 10:19 | |
*** eglynn has quit IRC | 10:20 | |
*** derekh has quit IRC | 10:20 | |
*** satroutr has joined #openstack-dev | 10:21 | |
*** jcoufal is now known as jcoufal_afk | 10:22 | |
*** lucasagomes has joined #openstack-dev | 10:22 | |
*** satroutr has quit IRC | 10:24 | |
*** matsuhashi has joined #openstack-dev | 10:26 | |
*** johnthetubaguy has joined #openstack-dev | 10:29 | |
*** doron_afk is now known as doron | 10:29 | |
*** sahid has joined #openstack-dev | 10:29 | |
*** jpich has quit IRC | 10:33 | |
*** jprovazn has quit IRC | 10:35 | |
*** derekh has joined #openstack-dev | 10:35 | |
*** e0ne_ has joined #openstack-dev | 10:36 | |
*** e0ne__ has joined #openstack-dev | 10:39 | |
*** e0ne has quit IRC | 10:40 | |
*** MaxV has quit IRC | 10:41 | |
*** MaxV has joined #openstack-dev | 10:41 | |
*** e0ne_ has quit IRC | 10:42 | |
*** afazekas has joined #openstack-dev | 10:42 | |
*** yaguang has quit IRC | 10:45 | |
*** matsuhashi has quit IRC | 10:46 | |
*** matsuhashi has joined #openstack-dev | 10:47 | |
*** yeylon_ has joined #openstack-dev | 10:47 | |
*** yeylon__ has quit IRC | 10:49 | |
*** afazekas has quit IRC | 10:50 | |
*** omachace has quit IRC | 10:50 | |
*** buzztroll has joined #openstack-dev | 10:51 | |
*** matsuhashi has quit IRC | 10:51 | |
*** nosnos has quit IRC | 10:51 | |
*** topol has joined #openstack-dev | 10:51 | |
*** jpich has joined #openstack-dev | 10:52 | |
*** rongze has quit IRC | 10:52 | |
*** doron is now known as doron_afk | 10:55 | |
*** che-arne has joined #openstack-dev | 10:55 | |
*** dims has joined #openstack-dev | 10:55 | |
*** kushal has quit IRC | 10:57 | |
*** larsbutler has quit IRC | 10:58 | |
*** tkammer has joined #openstack-dev | 10:58 | |
*** DinaBelova has quit IRC | 10:58 | |
*** doron_afk is now known as doron | 10:59 | |
*** coolsvap has quit IRC | 10:59 | |
*** doron is now known as doron_afk | 10:59 | |
*** doron_afk is now known as doron | 10:59 | |
*** rkukura has quit IRC | 11:00 | |
*** doron is now known as doron_afk | 11:00 | |
*** avishayb has joined #openstack-dev | 11:00 | |
*** doron_afk is now known as doron | 11:01 | |
*** doron is now known as doron_afk | 11:01 | |
*** doron_afk is now known as doron | 11:01 | |
*** doron is now known as doron_afk | 11:01 | |
*** markmc has joined #openstack-dev | 11:02 | |
*** jprovazn has joined #openstack-dev | 11:03 | |
*** omachace has joined #openstack-dev | 11:03 | |
*** claxton has quit IRC | 11:03 | |
*** freedomhui has joined #openstack-dev | 11:08 | |
*** mindpixel has quit IRC | 11:10 | |
*** marun has joined #openstack-dev | 11:11 | |
*** ashwini_ has quit IRC | 11:11 | |
*** larsbutler has joined #openstack-dev | 11:14 | |
*** anniec has joined #openstack-dev | 11:16 | |
*** paragan has joined #openstack-dev | 11:17 | |
*** CaptTofu has quit IRC | 11:17 | |
*** yaguang has joined #openstack-dev | 11:18 | |
*** CaptTofu has joined #openstack-dev | 11:18 | |
*** Alexei_987 has quit IRC | 11:19 | |
*** mriedem has joined #openstack-dev | 11:19 | |
*** claxton has joined #openstack-dev | 11:19 | |
*** safchain has quit IRC | 11:20 | |
*** rongze has joined #openstack-dev | 11:22 | |
*** sumanthns has joined #openstack-dev | 11:23 | |
*** sumanth has quit IRC | 11:24 | |
*** arezmerita has joined #openstack-dev | 11:24 | |
*** buzztroll has quit IRC | 11:25 | |
*** flaper87 is now known as flaper87|afk | 11:30 | |
*** vkmc has joined #openstack-dev | 11:30 | |
*** vkmc has quit IRC | 11:30 | |
*** vkmc has joined #openstack-dev | 11:30 | |
*** rongze has quit IRC | 11:30 | |
*** michchap has quit IRC | 11:31 | |
*** matsuhashi has joined #openstack-dev | 11:31 | |
*** DinaBelova has joined #openstack-dev | 11:32 | |
*** michchap has joined #openstack-dev | 11:34 | |
*** gongysh has quit IRC | 11:35 | |
*** tmclaugh[work] has joined #openstack-dev | 11:38 | |
*** prekarat has quit IRC | 11:41 | |
*** gszasz has joined #openstack-dev | 11:43 | |
*** pcm_ has joined #openstack-dev | 11:44 | |
*** rushiagr2 has quit IRC | 11:44 | |
*** prekarat has joined #openstack-dev | 11:48 | |
*** dhouck_ has joined #openstack-dev | 11:49 | |
dhouck_ | whois pmyeyes | 11:50 |
dhouck_ | whois pmyeyers | 11:50 |
dhouck_ | whois pmeyers | 11:50 |
*** djinni has quit IRC | 11:51 | |
*** buzztroll has joined #openstack-dev | 11:51 | |
*** dhouck_ has quit IRC | 11:53 | |
*** vladikr has quit IRC | 11:53 | |
*** claxton has quit IRC | 11:55 | |
*** buzztroll has quit IRC | 11:55 | |
*** matsuhashi has quit IRC | 11:56 | |
*** morazi-afk is now known as morazi | 11:57 | |
*** sumanthns has quit IRC | 11:57 | |
*** claxton has joined #openstack-dev | 11:58 | |
*** djinni has joined #openstack-dev | 11:58 | |
*** matsuhashi has joined #openstack-dev | 11:59 | |
*** freedomhui has quit IRC | 12:00 | |
*** yamahata has joined #openstack-dev | 12:00 | |
*** jorisroovers has joined #openstack-dev | 12:02 | |
*** jroovers has quit IRC | 12:02 | |
*** claxton has quit IRC | 12:03 | |
*** michchap has quit IRC | 12:04 | |
*** michchap has joined #openstack-dev | 12:04 | |
*** claxton has joined #openstack-dev | 12:04 | |
*** gmurphy has joined #openstack-dev | 12:06 | |
*** venkatesh has joined #openstack-dev | 12:06 | |
*** dhouck__ has joined #openstack-dev | 12:07 | |
*** dsirrine has quit IRC | 12:10 | |
*** aditirav has quit IRC | 12:12 | |
*** aditirav has joined #openstack-dev | 12:12 | |
*** spzala has joined #openstack-dev | 12:16 | |
*** fandikurnia01 has quit IRC | 12:16 | |
*** fandikurnia01 has joined #openstack-dev | 12:17 | |
*** claxton has quit IRC | 12:18 | |
*** FunnyLookinHat has joined #openstack-dev | 12:19 | |
*** e0ne has joined #openstack-dev | 12:20 | |
*** venkatesh has quit IRC | 12:23 | |
*** e0ne__ has quit IRC | 12:23 | |
*** rongze has joined #openstack-dev | 12:25 | |
*** sgordon has joined #openstack-dev | 12:25 | |
*** Artpicre has joined #openstack-dev | 12:27 | |
*** venkatesh has joined #openstack-dev | 12:27 | |
*** jorisroovers has quit IRC | 12:27 | |
*** anujdeshpande has quit IRC | 12:28 | |
*** spzala has quit IRC | 12:29 | |
*** spzala has joined #openstack-dev | 12:30 | |
*** freedomhui has joined #openstack-dev | 12:31 | |
*** prekarat has quit IRC | 12:32 | |
*** safchain has joined #openstack-dev | 12:32 | |
*** sumanthns has joined #openstack-dev | 12:33 | |
*** galstrom_zzz is now known as galstrom | 12:33 | |
*** jorisroovers has joined #openstack-dev | 12:33 | |
*** safchain has quit IRC | 12:34 | |
*** safchain has joined #openstack-dev | 12:35 | |
*** thomasem has joined #openstack-dev | 12:37 | |
*** freedomhui has quit IRC | 12:39 | |
*** mkollaro has quit IRC | 12:40 | |
*** glenng has joined #openstack-dev | 12:41 | |
*** flaper87|afk is now known as flaper87 | 12:41 | |
*** sumanthns has quit IRC | 12:42 | |
*** glenng1 has joined #openstack-dev | 12:43 | |
*** galstrom is now known as galstrom_zzz | 12:44 | |
*** glenng has quit IRC | 12:45 | |
*** dstanek has joined #openstack-dev | 12:47 | |
*** vartom114 has joined #openstack-dev | 12:47 | |
*** mindpixel has joined #openstack-dev | 12:48 | |
*** vartom113 has quit IRC | 12:48 | |
*** kevinconway has quit IRC | 12:49 | |
*** neelashah has joined #openstack-dev | 12:49 | |
*** marun has quit IRC | 12:50 | |
*** buzztroll has joined #openstack-dev | 12:51 | |
*** Chicago has joined #openstack-dev | 12:52 | |
tellesnobrega | hi, how can i change devstack installation to use api v3? | 12:52 |
*** bknudson has joined #openstack-dev | 12:53 | |
*** aditirav_ has joined #openstack-dev | 12:54 | |
*** omachace has quit IRC | 12:56 | |
*** kevinconway has joined #openstack-dev | 12:56 | |
*** buzztroll has quit IRC | 12:56 | |
*** achampion has quit IRC | 12:58 | |
*** bknudson has quit IRC | 12:59 | |
*** aditirav has quit IRC | 12:59 | |
*** aditirav_ is now known as aditirav | 12:59 | |
*** omachace has joined #openstack-dev | 13:01 | |
*** dprince has joined #openstack-dev | 13:02 | |
*** aditirav has quit IRC | 13:03 | |
*** jayg|g0n3 is now known as jayg | 13:04 | |
*** dvarga has joined #openstack-dev | 13:06 | |
*** joesavak has joined #openstack-dev | 13:09 | |
*** mkollaro has joined #openstack-dev | 13:09 | |
*** bknudson has joined #openstack-dev | 13:12 | |
marekd | tellesnobrega: i think v3 is already available there, but not yet in the native client code. | 13:14 |
marekd | ^^^^^ community, correct me if am wrong. | 13:14 |
tellesnobrega | marekd: i changed the os_auth_url to use v3 but im getting a ERROR: The resource could not be found. (HTTP 404) | 13:15 |
*** fandikurnia01 has quit IRC | 13:15 | |
*** vladikr has joined #openstack-dev | 13:15 | |
marekd | where the os_auth_url comes from (devstack, keystone, keystone client)? | 13:17 |
*** Nikolay_1t has quit IRC | 13:19 | |
*** e0ne has quit IRC | 13:19 | |
*** e0ne has joined #openstack-dev | 13:19 | |
*** omachace has left #openstack-dev | 13:21 | |
*** edmund has joined #openstack-dev | 13:21 | |
*** omachace has joined #openstack-dev | 13:21 | |
tellesnobrega | keystone | 13:22 |
*** e0ne has quit IRC | 13:24 | |
*** avishay has quit IRC | 13:24 | |
tellesnobrega | marekd: im trying to authenticate with keystone to launch a vm, but it fails, when i change back to v2.0 it works | 13:26 |
*** dsirrine has joined #openstack-dev | 13:26 | |
*** prad has joined #openstack-dev | 13:27 | |
*** rkukura has joined #openstack-dev | 13:28 | |
tellesnobrega | morganfainberg: ping | 13:30 |
*** devvesa has quit IRC | 13:32 | |
*** anniec_ has joined #openstack-dev | 13:33 | |
*** mindpixel has quit IRC | 13:33 | |
*** chandankumar has quit IRC | 13:34 | |
bknudson | tellesnobrega: your application probably doesn't support identity api v3. | 13:35 |
*** anniec has quit IRC | 13:35 | |
*** anniec_ is now known as anniec | 13:35 | |
tellesnobrega | bknudson: how come? and can i do so it can support? | 13:35 |
*** tonyha has joined #openstack-dev | 13:35 | |
*** lbragstad has joined #openstack-dev | 13:35 | |
*** freedomhui has joined #openstack-dev | 13:36 | |
bknudson | tellesnobrega: some applications only support identity api v2 and haven't been updated to support v3. | 13:36 |
*** herndon has joined #openstack-dev | 13:36 | |
*** SnowDust has quit IRC | 13:40 | |
*** freedomhui has quit IRC | 13:40 | |
tellesnobrega | bknudson: thanks, i thought tha nova already supported keystone v3 | 13:42 |
*** burt has joined #openstack-dev | 13:42 | |
*** matsuhashi has quit IRC | 13:43 | |
*** matsuhashi has joined #openstack-dev | 13:43 | |
*** kbringard has joined #openstack-dev | 13:43 | |
*** matsuhashi has quit IRC | 13:44 | |
*** matsuhas_ has joined #openstack-dev | 13:44 | |
*** radez_g0n3 is now known as radez | 13:45 | |
*** mrunge has quit IRC | 13:46 | |
*** jecarey has joined #openstack-dev | 13:47 | |
*** FunnyLookinHat has quit IRC | 13:48 | |
*** spzala has quit IRC | 13:49 | |
*** ayoung_ is now known as ayoung | 13:49 | |
*** sandywalsh_ has quit IRC | 13:50 | |
*** buzztroll has joined #openstack-dev | 13:51 | |
*** coolsvap has joined #openstack-dev | 13:52 | |
*** nermina has joined #openstack-dev | 13:53 | |
*** e0ne has joined #openstack-dev | 13:54 | |
*** clayb has joined #openstack-dev | 13:55 | |
*** mfer has joined #openstack-dev | 13:55 | |
*** matsuhas_ has quit IRC | 13:55 | |
*** matsuhashi has joined #openstack-dev | 13:56 | |
tellesnobrega | bknudson: does nova support keystone v3? | 13:56 |
*** alunduil_ has quit IRC | 13:57 | |
bknudson | tellesnobrega: I'm not familiar with how nova uses keystone. | 13:57 |
tellesnobrega | bknudson: thanks | 13:57 |
tellesnobrega | morganfainberg: hey, can i use keystone v3 when trying to create a vm? | 13:57 |
*** e0ne has quit IRC | 13:58 | |
*** e0ne has joined #openstack-dev | 13:59 | |
*** afazekas has joined #openstack-dev | 13:59 | |
*** YorikSar has quit IRC | 13:59 | |
tellesnobrega | bknudson: i have a devstack installation, im trying to use a ReST client to communicate with keystone v3 but it fails, when i use v2.0 it works | 14:00 |
*** litong has joined #openstack-dev | 14:00 | |
bknudson | tellesnobrega: what's the error? | 14:01 |
tellesnobrega | bknudson: the resource could not be found 404 | 14:01 |
*** HenryG has joined #openstack-dev | 14:01 | |
bknudson | tellesnobrega: what's the path to the resource it's trying to use? | 14:01 |
*** venkatesh has quit IRC | 14:01 | |
*** xqueralt has quit IRC | 14:01 | |
tellesnobrega | bknudson: ip:5000/v3/tokens/ | 14:02 |
*** DinaBelova has quit IRC | 14:02 | |
*** lsmola_ has quit IRC | 14:02 | |
*** xqueralt has joined #openstack-dev | 14:02 | |
bknudson | tellesnobrega: https://github.com/openstack/identity-api/blob/master/openstack-identity-api/v3/src/markdown/identity-api-v3.md#authenticate-post-authtokens | 14:03 |
bknudson | the keystone server is correct, there's no /v3/tokens. It's /v3/auth/tokens | 14:03 |
tellesnobrega | bknudson: thanks | 14:03 |
*** sandywalsh_ has joined #openstack-dev | 14:03 | |
*** sdake has quit IRC | 14:04 | |
*** sthaha has quit IRC | 14:05 | |
*** READ10 has joined #openstack-dev | 14:06 | |
*** e0ne_ has joined #openstack-dev | 14:06 | |
*** paragan has quit IRC | 14:06 | |
*** mindpixel has joined #openstack-dev | 14:09 | |
*** e0ne has quit IRC | 14:09 | |
*** xqueralt has quit IRC | 14:09 | |
*** sumanthns has joined #openstack-dev | 14:12 | |
*** jorisroovers has quit IRC | 14:12 | |
ayoung | tellesnobrega, I think what you are asking is this: | 14:12 |
ayoung | does auth_token middleware support using the v3 api | 14:13 |
ayoung | but maybe what you are asking is | 14:13 |
*** che-arne has quit IRC | 14:13 | |
ayoung | "can I use a v3 token to perform operations against Nova?" | 14:13 |
*** stevemar has joined #openstack-dev | 14:15 | |
*** jergerber has joined #openstack-dev | 14:15 | |
*** davidhadas_ has quit IRC | 14:15 | |
*** vijendar has joined #openstack-dev | 14:16 | |
tellesnobrega | ayoung: what i need is this: im working with domains, and i want to use v3 api so i can check if using v3 the domain_id is part of the context so i can use this id to check the information i need | 14:16 |
*** jimfehlig has joined #openstack-dev | 14:17 | |
tellesnobrega | ayoung: right now im trying to print the context and see what is inside it when using v3 api, using v2.0 i already checked it and it doesnt help since v2.0 doesnt have the concept of domain | 14:17 |
tellesnobrega | ayoung: using v3 now, and trying to create an instance i got this error ERROR: 'NoneType' object has no attribute 'rstrip' | 14:18 |
*** FunnyLookinHat has joined #openstack-dev | 14:18 | |
*** matrohon has quit IRC | 14:19 | |
*** matrohon has joined #openstack-dev | 14:19 | |
*** paragan has joined #openstack-dev | 14:20 | |
*** paragan has joined #openstack-dev | 14:20 | |
*** odyssey4me has quit IRC | 14:21 | |
*** yaguang has quit IRC | 14:22 | |
*** xingchao has joined #openstack-dev | 14:23 | |
*** xqueralt has joined #openstack-dev | 14:23 | |
*** buzztroll has quit IRC | 14:24 | |
*** vartom114 has quit IRC | 14:24 | |
*** cfriesen has joined #openstack-dev | 14:25 | |
*** freedomhui has joined #openstack-dev | 14:26 | |
*** xqueralt has quit IRC | 14:26 | |
*** xqueralt has joined #openstack-dev | 14:26 | |
*** rongze has quit IRC | 14:28 | |
ayoung | tellesnobrega, can you paste a stack trace? | 14:29 |
*** herndon has quit IRC | 14:29 | |
*** aeperezt has joined #openstack-dev | 14:30 | |
topol | dolphm, are you there? | 14:32 |
*** coolsvap has quit IRC | 14:32 | |
ayoung | topol, he's in Texas...guessing even if he is awake, coffee hasn't kicked in yet | 14:33 |
tellesnobrega | ayoung: thats all that is printed | 14:34 |
*** matsuhashi has quit IRC | 14:35 | |
topol | ayoung, so the Auditing AuthN, AuthZ and Policy Decisions session is scheduled for 3:10-3:50 on Friday. Matt who is presenting the session (works for me) has a flight leaving at 4pm. Any chance he can switch slots? Otherwise I'll present for him but he really wants to do it | 14:36 |
*** matsuhashi has joined #openstack-dev | 14:36 | |
*** mrutkows has joined #openstack-dev | 14:37 | |
ayoung | topol, and I am guessing switching flights is really not an option | 14:37 |
mrutkows | sorry no | 14:37 |
*** datsun180b has joined #openstack-dev | 14:37 | |
mrutkows | had no Saturday flight options going back even 6 weeks ago | 14:38 |
*** terriyu has joined #openstack-dev | 14:39 | |
*** rongze has joined #openstack-dev | 14:39 | |
*** galstrom_zzz is now known as galstrom | 14:39 | |
tellesnobrega | ayoung: i was playing with the authentication using v3 and i got this result http://paste.openstack.org/show/50295/ , can i assume that nova also has this information with domain also? | 14:39 |
topol | ayoung, should I just send dolph an email? | 14:40 |
*** matsuhashi has quit IRC | 14:41 | |
*** matsuhas_ has joined #openstack-dev | 14:41 | |
*** alunduil has joined #openstack-dev | 14:41 | |
dstanek | ayoung, bknudson, morganfainberg: i could use your opinion on jamie's package naming suggestion here: https://review.openstack.org/#/c/54209/ | 14:44 |
*** paragan has quit IRC | 14:44 | |
dstanek | ayoung, bknudson, morganfainberg: it's jamie's second last comment; i like the idea, but don't want to make the change without some other opinions | 14:44 |
bknudson | dstanek: he's suggesting a utils/ package for this? | 14:44 |
*** READ10 has quit IRC | 14:45 | |
*** sahid has quit IRC | 14:45 | |
dstanek | bknudson: yes, keystone.tests.utils | 14:45 |
bknudson | dstanek: we must have other similar files that are utilities and not tests? | 14:46 |
*** jmontemayor has joined #openstack-dev | 14:46 | |
bknudson | (like fakeldap.py) | 14:46 |
bknudson | and default_fixtures.py | 14:47 |
*** eharney has joined #openstack-dev | 14:47 | |
dstanek | yeah, and i have been working on matchers and fixtures | 14:47 |
*** matsuhas_ has quit IRC | 14:47 | |
*** danwent has quit IRC | 14:48 | |
*** matsuhashi has joined #openstack-dev | 14:48 | |
bknudson | I like the idea, but I don't think it has to be done with this commit. | 14:48 |
dstanek | bknudson: if i end up doing this i'll rebase my assert XML matcher patch on top of the stack and put the matchers module into utils | 14:48 |
bknudson | if you had a commit that created utils with default_fixtures and fakeldap that would be very useful. | 14:49 |
*** danwent has joined #openstack-dev | 14:49 | |
bknudson | I don't see it as a requirement. | 14:49 |
*** danwent has quit IRC | 14:49 | |
dstanek | bknudson: maybe i'll move things around in a future commit then | 14:49 |
*** beagles has quit IRC | 14:50 | |
*** b3nt_pin has joined #openstack-dev | 14:50 | |
bknudson | dstanek: it looks like we have ideas for general restructuring of tests... functional/ and system/ | 14:50 |
*** buzztroll has joined #openstack-dev | 14:51 | |
dstanek | bknudson: yeah, i think i'm going to create a short blueprint to describe my thoughts | 14:51 |
*** mindpixel has quit IRC | 14:51 | |
*** thedodd has joined #openstack-dev | 14:52 | |
bknudson | dstanek: blueprint with "reorganize tests" and an etherpad | 14:52 |
*** mkollaro has quit IRC | 14:52 | |
*** radez is now known as radez_g0n3 | 14:53 | |
*** DennyZhang has joined #openstack-dev | 14:53 | |
*** matsuhashi has quit IRC | 14:53 | |
*** mindpixel has joined #openstack-dev | 14:53 | |
*** dhellmann-afk is now known as dhellmann | 14:54 | |
*** buzztroll has quit IRC | 14:55 | |
*** thedodd has quit IRC | 14:57 | |
*** thedodd has joined #openstack-dev | 14:57 | |
*** ruhe has joined #openstack-dev | 14:57 | |
*** jorisroovers has joined #openstack-dev | 14:58 | |
*** vartom114 has joined #openstack-dev | 14:58 | |
*** thedodd has quit IRC | 14:58 | |
*** afazekas has quit IRC | 15:00 | |
*** jorisroovers has quit IRC | 15:00 | |
*** jaybuff has joined #openstack-dev | 15:00 | |
*** herndon has joined #openstack-dev | 15:00 | |
*** jaybuff has left #openstack-dev | 15:00 | |
*** eglynn_ is now known as eglynn | 15:01 | |
*** glenng1 is now known as glenng | 15:02 | |
*** rcleere has joined #openstack-dev | 15:03 | |
*** pablosan has joined #openstack-dev | 15:03 | |
*** markmc has quit IRC | 15:04 | |
*** macjack_ has joined #openstack-dev | 15:05 | |
*** kiall has quit IRC | 15:05 | |
*** macjack has quit IRC | 15:05 | |
*** lsmola has joined #openstack-dev | 15:06 | |
*** kiall has joined #openstack-dev | 15:08 | |
*** READ10 has joined #openstack-dev | 15:10 | |
*** vuil has quit IRC | 15:10 | |
*** jcoufal_afk is now known as jcoufal | 15:10 | |
*** freedomhui has quit IRC | 15:10 | |
*** thedodd has joined #openstack-dev | 15:10 | |
*** jorisroovers has joined #openstack-dev | 15:10 | |
*** freedomhui has joined #openstack-dev | 15:10 | |
*** marun has joined #openstack-dev | 15:11 | |
*** martyntaylor has left #openstack-dev | 15:12 | |
*** guohliu has quit IRC | 15:12 | |
*** CaptTofu has quit IRC | 15:13 | |
*** DennyZhang has quit IRC | 15:13 | |
*** CaptTofu has joined #openstack-dev | 15:13 | |
*** thedodd has quit IRC | 15:14 | |
*** ruhe has quit IRC | 15:15 | |
*** rongze_ has joined #openstack-dev | 15:15 | |
*** rongze has quit IRC | 15:15 | |
*** colinmcnamara has joined #openstack-dev | 15:16 | |
*** vipul-away is now known as vipul | 15:16 | |
*** avishayb has quit IRC | 15:18 | |
*** pablosan has quit IRC | 15:18 | |
*** b3nt_pin is now known as beagles | 15:19 | |
*** SergeyLukjanov has joined #openstack-dev | 15:19 | |
*** SergeyLukjanov is now known as _SergeyLukjanov | 15:19 | |
*** _SergeyLukjanov is now known as SergeyLukjanov | 15:20 | |
*** ruhe has joined #openstack-dev | 15:20 | |
*** thedodd has joined #openstack-dev | 15:20 | |
*** yamahata has quit IRC | 15:20 | |
*** topol has quit IRC | 15:20 | |
*** vipul is now known as vipul-away | 15:20 | |
*** e0ne_ has quit IRC | 15:21 | |
*** e0ne has joined #openstack-dev | 15:22 | |
*** vartom114 has quit IRC | 15:23 | |
*** jvrbanac has joined #openstack-dev | 15:23 | |
*** macjack_ has quit IRC | 15:24 | |
*** carl_baldwin has joined #openstack-dev | 15:25 | |
*** e0ne has quit IRC | 15:26 | |
*** pablosan has joined #openstack-dev | 15:26 | |
*** mikeoutland has joined #openstack-dev | 15:26 | |
*** avishayb has joined #openstack-dev | 15:27 | |
*** pmathews has joined #openstack-dev | 15:27 | |
*** macjack has joined #openstack-dev | 15:28 | |
*** radez_g0n3 is now known as radez | 15:29 | |
*** enmand has joined #openstack-dev | 15:30 | |
*** shardy is now known as shardy_afk | 15:30 | |
*** pablosan has quit IRC | 15:30 | |
*** marun has quit IRC | 15:32 | |
*** arezmerita has quit IRC | 15:32 | |
*** vijendar has quit IRC | 15:32 | |
*** ruhe has quit IRC | 15:33 | |
*** mdenny has joined #openstack-dev | 15:33 | |
*** nplanel has joined #openstack-dev | 15:35 | |
*** mmagr has quit IRC | 15:35 | |
*** ruhe has joined #openstack-dev | 15:37 | |
*** jaypipes has joined #openstack-dev | 15:37 | |
*** e0ne has joined #openstack-dev | 15:45 | |
*** dprince has quit IRC | 15:47 | |
*** xingchao_ has joined #openstack-dev | 15:47 | |
*** davidhadas has joined #openstack-dev | 15:48 | |
*** utlemming has quit IRC | 15:49 | |
*** twoputt has joined #openstack-dev | 15:50 | |
*** reed has joined #openstack-dev | 15:50 | |
*** twoputt_ has joined #openstack-dev | 15:50 | |
*** mfer has quit IRC | 15:50 | |
*** xingchao has quit IRC | 15:51 | |
*** mfer has joined #openstack-dev | 15:51 | |
*** buzztroll has joined #openstack-dev | 15:51 | |
*** xarses has quit IRC | 15:51 | |
*** xingchao_ has quit IRC | 15:51 | |
*** radez is now known as radez_g0n3 | 15:52 | |
*** markmc has joined #openstack-dev | 15:53 | |
*** shardy_afk is now known as shardy | 15:53 | |
*** bauzas has quit IRC | 15:54 | |
*** utlemming has joined #openstack-dev | 15:54 | |
*** topol has joined #openstack-dev | 15:55 | |
*** radez_g0n3 is now known as radez | 15:55 | |
*** buzztroll has quit IRC | 15:56 | |
*** mindpixel has quit IRC | 15:56 | |
*** mindpixel has joined #openstack-dev | 15:58 | |
*** ruhe has quit IRC | 16:00 | |
*** avishayb has quit IRC | 16:00 | |
*** singhs has joined #openstack-dev | 16:00 | |
*** giroro_ has quit IRC | 16:01 | |
*** singhs has left #openstack-dev | 16:01 | |
*** med_ is now known as med | 16:01 | |
*** danwent has joined #openstack-dev | 16:01 | |
*** med is now known as med_ | 16:01 | |
*** mrutkows has quit IRC | 16:02 | |
*** jorisroovers has quit IRC | 16:02 | |
*** mangelajo has joined #openstack-dev | 16:02 | |
*** Ruetobas has joined #openstack-dev | 16:03 | |
*** spzala has joined #openstack-dev | 16:03 | |
*** tanisdl has joined #openstack-dev | 16:04 | |
*** krotscheck has joined #openstack-dev | 16:04 | |
*** jorisroovers has joined #openstack-dev | 16:04 | |
*** omachace1 has joined #openstack-dev | 16:04 | |
*** omachace has quit IRC | 16:04 | |
*** rongze has joined #openstack-dev | 16:05 | |
*** sarob has joined #openstack-dev | 16:05 | |
*** omachace1 has quit IRC | 16:05 | |
*** anniec has quit IRC | 16:06 | |
*** mrodden has joined #openstack-dev | 16:06 | |
*** omachace has joined #openstack-dev | 16:06 | |
*** ben_duyujie has joined #openstack-dev | 16:06 | |
*** e0ne has quit IRC | 16:06 | |
*** rongze_ has quit IRC | 16:06 | |
*** jtomasek has quit IRC | 16:06 | |
*** e0ne has joined #openstack-dev | 16:06 | |
bknudson | anyone have tips for how to run a testr test with pdb ? | 16:06 |
bknudson | was doing tox -e py27 (testname) | 16:07 |
stevemar | bknudson, i was wondering the same thing yesterday | 16:07 |
*** Ruetobas has quit IRC | 16:08 | |
*** pablosan has joined #openstack-dev | 16:08 | |
*** cdub_ has joined #openstack-dev | 16:08 | |
*** mkollaro has joined #openstack-dev | 16:09 | |
stevemar | bknudson: https://wiki.openstack.org/wiki/Testr#Debugging_.28pdb.29_Tests | 16:10 |
*** ArcTanSusan has joined #openstack-dev | 16:10 | |
bknudson | stevemar: this worked | 16:11 |
bknudson | tox -e venv nosetests -- -s keystone.tests.test_auth:AuthWithTrust.test_v3_trust_token_get_token_fails | 16:11 |
*** e0ne has quit IRC | 16:11 | |
stevemar | -s, nice | 16:11 |
stevemar | bknudson, cool, will try that out soon | 16:12 |
jaypipes | sdague: lol | 16:12 |
*** markmc has quit IRC | 16:12 | |
*** radez is now known as radez_g0n3 | 16:12 | |
*** Chicago has quit IRC | 16:12 | |
*** krotscheck has quit IRC | 16:13 | |
jaypipes | stevemar: thx for the reviews, very helpful :) | 16:13 |
*** tkammer has quit IRC | 16:13 | |
stevemar | jaypipes! was just going to ping you | 16:13 |
stevemar | jaypipes, np | 16:13 |
*** Ruetobas has joined #openstack-dev | 16:14 | |
*** derekh has quit IRC | 16:14 | |
jaypipes | stevemar: so... as for rewording the 409 thing... I currently have this style in use: | 16:14 |
jaypipes | * Adding a region with a parent_region_id that does not exist | 16:14 |
jaypipes | should fail with a `404 Not Found` | 16:14 |
jaypipes | * Adding a region with a parent_region_id that would form a | 16:14 |
jaypipes | circular relationship should fail with a `409 Conflict` | 16:14 |
jaypipes | stevemar: do you recommend I change the 404 Not Found style as well, to be less wordy? | 16:14 |
stevemar | jaypipes, those look cool | 16:14 |
*** MaxV has quit IRC | 16:15 | |
stevemar | jaypipes, just wasn't a fan of the way delete was worded :) | 16:15 |
*** nplanel has quit IRC | 16:15 | |
*** MaxV has joined #openstack-dev | 16:16 | |
stevemar | jaypipes, still wondering what the id is for a region if no user-defined-id is sent? | 16:16 |
*** raildo has joined #openstack-dev | 16:17 | |
*** e0ne has joined #openstack-dev | 16:17 | |
bknudson | echo 'keystone.tests.test_auth.AuthWithTrust.test_v3_trust_token_get_token_fails' > test_to_run && tox -e venv -- python -m testtools.run discover --load-list test_to_run | 16:17 |
*** mkollaro has quit IRC | 16:17 | |
*** mkollaro1 has joined #openstack-dev | 16:17 | |
*** vijendar has joined #openstack-dev | 16:17 | |
*** Chicago has joined #openstack-dev | 16:17 | |
*** souvik has joined #openstack-dev | 16:19 | |
*** MaxV has quit IRC | 16:20 | |
*** hemna has joined #openstack-dev | 16:21 | |
*** vuil has joined #openstack-dev | 16:21 | |
jaypipes | stevemar: id is implementation-defined if not specified. | 16:21 |
*** JordanP has quit IRC | 16:22 | |
*** achampion has joined #openstack-dev | 16:22 | |
*** nermina has quit IRC | 16:22 | |
*** ykhodork has joined #openstack-dev | 16:22 | |
*** ygbo has quit IRC | 16:23 | |
*** yuan has joined #openstack-dev | 16:23 | |
stevemar | jaypipes, hmm, okay... seems like there could be some inconsistencies if the user-defined-id is used vs. not used. But if others are cool with it, then i wont complain ;) | 16:24 |
*** corXi has quit IRC | 16:25 | |
*** yuanz has quit IRC | 16:25 | |
*** markwash has joined #openstack-dev | 16:26 | |
*** claxton has joined #openstack-dev | 16:26 | |
jaypipes | stevemar: yeah, this is a purposeful inconsistency :) jamie, dolph and adam came up with the idea on IRC and asked me to implement it, to enable region IDs to be set by deployers to keep URIs "prettified" ;) | 16:26 |
stevemar | jaypipes, ah okay, if they vetted it, then i'm definitely good with that :) | 16:27 |
*** ArcTanSusan has quit IRC | 16:27 | |
dstanek | bknudson, stevemar: i don't think testr has that ability yet - i still use nose just as much as i use testr | 16:28 |
tellesnobrega | how can i get a keystone v3 auth_token? im running this command on a rest client http://paste.openstack.org/show/50309/ | 16:28 |
tellesnobrega | to ip:5000/v3/auth/tokens | 16:29 |
jaypipes | stevemar: ok, fixed up the delete 409 wording. | 16:29 |
tellesnobrega | and got this response http://paste.openstack.org/show/50310/ | 16:29 |
*** twoputt has quit IRC | 16:30 | |
*** twoputt_ has quit IRC | 16:30 | |
*** utlemming has quit IRC | 16:30 | |
*** pmathews has quit IRC | 16:30 | |
stevemar | tellesnobrega, suggest you look @ v3_auth_tests in keystone, i think you will need to scope your request to a specific project if you want a scoped token, also the token id is seen in the headers? | 16:31 |
stevemar | jaypipes, coolio, +1 coming up :O | 16:31 |
jaypipes | stevemar: cheers :) | 16:31 |
tellesnobrega | stevemar: im trying to get a token to a create a new domain for example | 16:31 |
*** nplanel has joined #openstack-dev | 16:32 | |
*** twoputt has joined #openstack-dev | 16:32 | |
*** twoputt_ has joined #openstack-dev | 16:32 | |
stevemar | tellesnobrega: did you check the headers of the response? | 16:34 |
stevemar | tellesnobrega: https://github.com/openstack/identity-api/blob/master/openstack-identity-api/v3/src/markdown/identity-api-v3.md#authentication-responses | 16:34 |
*** comay has joined #openstack-dev | 16:36 | |
*** mindpixel has quit IRC | 16:36 | |
tellesnobrega | stevemar: i checked the hearder, i got the token, but i still got unauthorized to create a domain | 16:37 |
*** giulivo has quit IRC | 16:37 | |
*** jorisroovers has quit IRC | 16:39 | |
*** sarob has quit IRC | 16:42 | |
stevemar | tellesnobrega, okay, i believe you still need to add scope to your request | 16:43 |
stevemar | https://github.com/openstack/keystone/blob/master/keystone/tests/test_v3.py#L301 | 16:43 |
*** sarob has joined #openstack-dev | 16:43 | |
stevemar | tellesnobrega ^ | 16:43 |
*** nplanel has quit IRC | 16:43 | |
tellesnobrega | stevemar: thanks | 16:43 |
*** xarses has joined #openstack-dev | 16:44 | |
stevemar | tellesnobrega: add and scope section and specify the users project in the scope, then try creating a new domain with the new token, let me know if it works | 16:44 |
tellesnobrega | stevemar: ok | 16:44 |
*** buzztroll has joined #openstack-dev | 16:46 | |
*** belmoreira has quit IRC | 16:46 | |
*** jecarey has quit IRC | 16:47 | |
*** mdenny has quit IRC | 16:47 | |
*** SumitNaiksatam has quit IRC | 16:48 | |
*** giulivo has joined #openstack-dev | 16:48 | |
*** mindpixel has joined #openstack-dev | 16:48 | |
*** enmand has quit IRC | 16:50 | |
*** omachace has quit IRC | 16:50 | |
*** angdraug has joined #openstack-dev | 16:52 | |
*** kushal has joined #openstack-dev | 16:52 | |
*** zaitcev has joined #openstack-dev | 16:52 | |
tellesnobrega | stevemar: it worked | 16:52 |
*** mkollaro1 has quit IRC | 16:53 | |
*** sarob has quit IRC | 16:56 | |
*** sarob_ has joined #openstack-dev | 16:56 | |
*** willingc has joined #openstack-dev | 16:56 | |
tellesnobrega | stevemar: can i explain to you my problem, so you can maybe give me some helpful tips | 16:58 |
tellesnobrega | ?? | 16:58 |
*** danwent has quit IRC | 16:58 | |
*** omachace has joined #openstack-dev | 16:59 | |
*** safchain has quit IRC | 16:59 | |
*** omachace has left #openstack-dev | 17:00 | |
*** utlemming has joined #openstack-dev | 17:00 | |
*** coolsvap has joined #openstack-dev | 17:01 | |
*** marun has joined #openstack-dev | 17:03 | |
*** marun has quit IRC | 17:04 | |
*** danwent has joined #openstack-dev | 17:05 | |
*** nermina has joined #openstack-dev | 17:05 | |
stevemar | tellesnobrega, oops, was afk - glad it worked! | 17:08 |
stevemar | tellesnobrega, sure, whats up | 17:08 |
tellesnobrega | stevemar: im working on a new feature, that is creating quotas for domain | 17:08 |
*** mindpixel has quit IRC | 17:09 | |
*** SumitNaiksatam has joined #openstack-dev | 17:09 | |
tellesnobrega | stevemar: that being done on nova. For that i need to have to domain_id so i can do stuff like checking quotas and all other stuff like it is done for project quotas | 17:09 |
tellesnobrega | stevemar: but i dont know how to get this domain, if it is on the context, if it should be, if i should make a rest call to keystone and get this id | 17:10 |
*** rongze has quit IRC | 17:12 | |
stevemar | tellesnobrega, you're doing this work for nova or keystone? | 17:12 |
tellesnobrega | stevemar: nova | 17:12 |
*** doron_afk has quit IRC | 17:13 | |
*** mkollaro has joined #openstack-dev | 17:13 | |
*** sarob_ has quit IRC | 17:13 | |
*** thingee_zzz is now known as thingee | 17:13 | |
stevemar | tellesnobrega currently, project based quotas exist? and you're trying to add domain based quotas? | 17:13 |
stevemar | just trying to understand it | 17:14 |
*** beagles has quit IRC | 17:14 | |
tellesnobrega | stevemar: yes, now there is quota for projects and users but not for domains, since domain is a new concept | 17:14 |
*** b3nt_pin has joined #openstack-dev | 17:14 | |
stevemar | tellesnobrega, okay, how is the project_id (or user_id) assigned? | 17:15 |
stevemar | you can perform list for domains, if that helps | 17:15 |
tellesnobrega | stevemar: they come from the context if the user doesnt give one | 17:16 |
*** b3nt_pin is now known as beagles | 17:16 | |
sdague | jaypipes: yeh, sorry, didn't mean to make it look like I was yelling at you :) | 17:16 |
tellesnobrega | stevemar: i was told not to change the QuotaEngine methods | 17:17 |
stevemar | tellesnobrega, oh okay, the context should have the domain_id too then | 17:17 |
tellesnobrega | stevemar: so i cant put the domain_id parameter for the methods | 17:17 |
jaypipes | sdague: lol, no worries! | 17:17 |
*** sarob has joined #openstack-dev | 17:17 | |
tellesnobrega | stevemar: how can i make sure of that? | 17:17 |
*** mfer has quit IRC | 17:17 | |
tellesnobrega | stevemar: i tried using v3 while creating a new instance but i get an error | 17:18 |
*** matrohon has quit IRC | 17:18 | |
*** armax has joined #openstack-dev | 17:18 | |
tellesnobrega | stevemar: when i was using v2 i printed the context and domain wanst there, since domain doesnt exist on v2 | 17:18 |
*** changbl has joined #openstack-dev | 17:19 | |
*** afazekas has joined #openstack-dev | 17:20 | |
*** krotscheck has joined #openstack-dev | 17:20 | |
stevemar | tellesnobrega, 1 minute, let me look at the QuotaEngine | 17:20 |
tellesnobrega | stevemar: sure, thanks | 17:21 |
*** DinaBelova has joined #openstack-dev | 17:21 | |
bknudson | morganfainberg: https://review.openstack.org/#/c/51688/ -- i think this one is ready | 17:23 |
*** vipul-away is now known as vipul | 17:23 | |
*** mfer has joined #openstack-dev | 17:23 | |
*** vipul is now known as vipul-away | 17:24 | |
*** rongze has joined #openstack-dev | 17:26 | |
*** yeylon_ has quit IRC | 17:26 | |
*** gszasz has quit IRC | 17:26 | |
stevemar | tellesnobrega, i'm not sure what is in the context in nova. But if project and user are there, then domain might be too? | 17:27 |
morganfainberg | bknudson, looking now. i'll be very happy if it is ready | 17:28 |
tellesnobrega | stevemar: i dont really know, and couldnt test it | 17:29 |
*** sarob has quit IRC | 17:30 | |
stevemar | bknudson, it's looking good to me, but morganfainberg will find something ;) | 17:30 |
*** jistr has quit IRC | 17:31 | |
*** mkollaro has quit IRC | 17:32 | |
briancline | what's the name/location of the skeleton repo used for new projects? | 17:32 |
briancline | saw it the other day but can't remember where | 17:32 |
*** twoputt has quit IRC | 17:32 | |
*** twoputt_ has quit IRC | 17:32 | |
*** sarob has joined #openstack-dev | 17:33 | |
morganfainberg | stevemar, hay. i don't always find things | 17:33 |
dstanek | morganfainberg: you find all the things! | 17:35 |
morganfainberg | dstanek, lies, bknudson typically finds more than me. | 17:35 |
*** enmand has joined #openstack-dev | 17:36 | |
stevemar | tellesnobrega, sorry guy, i'm stuck :) | 17:36 |
tellesnobrega | stevemar: no problem | 17:37 |
briancline | oh, nevermind. found it | 17:39 |
bknudson | tellesnobrega: the auth_token middleware sets all sorts of envs -- https://github.com/openstack/python-keystoneclient/blob/master/keystoneclient/middleware/auth_token.py#L64 | 17:39 |
bknudson | including domain id. | 17:39 |
*** afazekas_ has joined #openstack-dev | 17:39 | |
*** mdenny has joined #openstack-dev | 17:40 | |
*** enmand has quit IRC | 17:40 | |
bknudson | stevemar: https://review.openstack.org/#/c/54789/ | 17:41 |
tellesnobrega | bknudson: how can i use that on nova? | 17:41 |
stevemar | bknudson, thanks for showing that to tellesnobrega, and making sure i wasn't going crazy :) | 17:41 |
bknudson | tellesnobrega: nova already uses auth_token middleware by default, it needs to extract the values. | 17:42 |
bknudson | I don't know how nova does that. | 17:42 |
tellesnobrega | bknudson: how can i get the domain_id from this? i dont have much experience with this code | 17:42 |
dsantos_ | bknudson: I managed to have keystone (and the other services) running in two networks and the solution was simpler than using apache2 or deploying two instances of keystone | 17:42 |
stevemar | bknudson, damn, see, i never think of addressing these little problems in the code, or doc'ing it, you're too good at it! | 17:42 |
*** pixelb has quit IRC | 17:43 | |
bknudson | stevemar: I get tired of looking things up every time! | 17:43 |
*** ben_duyujie has quit IRC | 17:43 | |
bknudson | tellesnobrega: nova is already extracting things like roles out of it, so could look for wherever that happens. | 17:44 |
dsantos_ | bknudson: we did it based on split horizon DNS, since the only problem was in the endpoints (I just changed the IP address in the endpoints to a name and the DNS server tell the client the right IP address for its network) | 17:44 |
dsantos_ | bknudson: I was wondering whether is it a good solution and whether would be good to make a guide about it | 17:44 |
bknudson | dsantos_: others might have better solutions to this... regions or zones? It's not something I'm familiar with. | 17:45 |
*** CaptTofu has quit IRC | 17:45 | |
*** xqueralt has quit IRC | 17:45 | |
*** yolanda has quit IRC | 17:47 | |
*** sarob has quit IRC | 17:47 | |
*** e0ne has quit IRC | 17:48 | |
*** e0ne has joined #openstack-dev | 17:49 | |
*** johnthetubaguy has quit IRC | 17:49 | |
*** jruzicka has quit IRC | 17:50 | |
*** jpich has quit IRC | 17:53 | |
*** jasdeepH has joined #openstack-dev | 17:53 | |
*** ruhe has joined #openstack-dev | 17:53 | |
*** e0ne has quit IRC | 17:54 | |
*** kdas__ has joined #openstack-dev | 17:54 | |
*** tanisdl has quit IRC | 17:55 | |
*** kushal has quit IRC | 17:55 | |
*** afazekas_ has quit IRC | 17:57 | |
morganfainberg | bknudson, pushed the "make it go" button on assignment cleanup. looks good to me and it'll be nice to have that cleanup out of the way. | 17:57 |
*** SumitNaiksatam has quit IRC | 17:59 | |
*** yassine has quit IRC | 17:59 | |
*** kdas__ is now known as kushal | 18:01 | |
*** kushal has quit IRC | 18:01 | |
*** kushal has joined #openstack-dev | 18:01 | |
*** jecarey has joined #openstack-dev | 18:01 | |
*** isd has joined #openstack-dev | 18:06 | |
*** atiwari has joined #openstack-dev | 18:06 | |
*** rongze has quit IRC | 18:06 | |
*** rongze has joined #openstack-dev | 18:07 | |
*** spzala has quit IRC | 18:07 | |
*** flaper87 is now known as flaper87|afk | 18:10 | |
*** radez_g0n3 is now known as radez | 18:11 | |
*** lucasagomes has quit IRC | 18:11 | |
*** mfink has joined #openstack-dev | 18:11 | |
*** rongze has quit IRC | 18:12 | |
*** briancline has quit IRC | 18:12 | |
*** amohn9 has joined #openstack-dev | 18:13 | |
*** SumitNaiksatam has joined #openstack-dev | 18:13 | |
*** amohn9 has left #openstack-dev | 18:13 | |
bknudson | morganfainberg: figured out why AuthInfo can't use @dependency.requires()... | 18:13 |
*** SumitNaiksatam has quit IRC | 18:13 | |
*** Mandell has joined #openstack-dev | 18:14 | |
*** dstanek has quit IRC | 18:15 | |
*** troytoman-away is now known as troytoman | 18:15 | |
*** enmand has joined #openstack-dev | 18:17 | |
*** eglynn has quit IRC | 18:17 | |
*** changbl has quit IRC | 18:17 | |
*** danpb1 has joined #openstack-dev | 18:18 | |
*** pmathews has joined #openstack-dev | 18:18 | |
*** cfriesen_ has joined #openstack-dev | 18:19 | |
*** mikeoutland has quit IRC | 18:19 | |
*** mlavalle has joined #openstack-dev | 18:20 | |
*** SumitNaiksatam has joined #openstack-dev | 18:22 | |
*** Underbyte has joined #openstack-dev | 18:22 | |
Underbyte | hey guys | 18:23 |
Underbyte | so, QED disk image format isn't supported in OpenStack Havana, c/d? | 18:23 |
*** mfink has quit IRC | 18:23 | |
*** isd has quit IRC | 18:23 | |
*** avishay has joined #openstack-dev | 18:24 | |
*** atiwari has quit IRC | 18:25 | |
*** ykhodork has quit IRC | 18:25 | |
*** mrodden has quit IRC | 18:25 | |
*** reed has quit IRC | 18:25 | |
*** jaypipes has quit IRC | 18:25 | |
*** freedomhui has quit IRC | 18:25 | |
*** READ10 has quit IRC | 18:25 | |
*** terriyu has quit IRC | 18:25 | |
*** aeperezt has quit IRC | 18:25 | |
*** cfriesen has quit IRC | 18:25 | |
*** jergerber has quit IRC | 18:25 | |
*** dvarga has quit IRC | 18:25 | |
*** danpb has quit IRC | 18:25 | |
*** jcoufal has quit IRC | 18:25 | |
*** Anticimex has quit IRC | 18:25 | |
*** fungi has quit IRC | 18:25 | |
*** erkules has quit IRC | 18:25 | |
*** jdennis has quit IRC | 18:25 | |
*** slagle has quit IRC | 18:25 | |
*** Chaser has quit IRC | 18:25 | |
*** danjared_ has quit IRC | 18:25 | |
*** pmyers has quit IRC | 18:25 | |
*** arosen has quit IRC | 18:25 | |
*** luisbg has quit IRC | 18:25 | |
*** andymccr has quit IRC | 18:25 | |
*** jasdeepH has quit IRC | 18:26 | |
morganfainberg | bknudson, what was the cause? | 18:27 |
*** Ryan_Lane has joined #openstack-dev | 18:28 | |
bknudson | morganfainberg: turns out dependencies aren't injected until after constructor is run | 18:28 |
bknudson | and AuthInfo used self.identity_api during construction | 18:29 |
morganfainberg | oh | 18:29 |
*** exed has quit IRC | 18:29 | |
morganfainberg | argh. | 18:29 |
*** troytoman is now known as troytoman-away | 18:29 | |
morganfainberg | yeah i can see how that would cause it to not work :P | 18:29 |
bknudson | morganfainberg: I've got a workaround... requires having a factory | 18:29 |
*** nachi has joined #openstack-dev | 18:30 | |
nachi | hello. I am trying to run devstack. I see the following in the log. Does anyone have idea what could be the issue | 18:31 |
nachi | + nova x509-get-root-cert /home/nachi/workspace/devstack/accrc/cacert.pem | 18:31 |
nachi | ERROR: Unauthorized (HTTP 401) | 18:31 |
nachi | + echo 'Failed to update the root certificate: /home/nachi/workspace/devstack/accrc/cacert.pem' | 18:31 |
nachi | Failed to update the root certificate: /home/nachi/workspace/devstack/accrc/cacert.pem | 18:31 |
*** jorisroovers has joined #openstack-dev | 18:31 | |
*** nati_ueno has quit IRC | 18:31 | |
*** sushils has quit IRC | 18:32 | |
*** Chaser has joined #openstack-dev | 18:34 | |
*** aeperezt has joined #openstack-dev | 18:34 | |
*** jroovers has joined #openstack-dev | 18:34 | |
*** Shaan7 has quit IRC | 18:35 | |
*** jorisroovers has quit IRC | 18:36 | |
*** spzala has joined #openstack-dev | 18:37 | |
*** rongze has joined #openstack-dev | 18:37 | |
*** galstrom is now known as galstrom_zzz | 18:37 | |
*** isd has joined #openstack-dev | 18:38 | |
*** galstrom_zzz is now known as galstrom | 18:38 | |
*** navneet_ has joined #openstack-dev | 18:40 | |
navneet_ | Hi guys | 18:40 |
*** vartom114 has joined #openstack-dev | 18:40 | |
navneet_ | Is there anybody who can review submission for stable/havana? | 18:40 |
*** novas0x2a|laptop has joined #openstack-dev | 18:41 | |
*** pmathews has quit IRC | 18:41 | |
*** Underbyte has quit IRC | 18:42 | |
*** SumitNaiksatam has quit IRC | 18:42 | |
*** insanidade has joined #openstack-dev | 18:42 | |
navneet_ | ping.... | 18:42 |
navneet_ | adam_g: u thr? | 18:43 |
*** jecarey has quit IRC | 18:44 | |
*** danpb1 has quit IRC | 18:44 | |
*** dstanek has joined #openstack-dev | 18:44 | |
*** mikeoutland has joined #openstack-dev | 18:44 | |
navneet_ | jgriffith: ping | 18:44 |
*** SumitNaiksatam has joined #openstack-dev | 18:45 | |
*** ricardoas has joined #openstack-dev | 18:45 | |
*** Ryan_Lane has quit IRC | 18:45 | |
*** rongze has quit IRC | 18:46 | |
*** twoputt_ has joined #openstack-dev | 18:46 | |
*** twoputt has joined #openstack-dev | 18:46 | |
*** mfer has quit IRC | 18:47 | |
*** diogogmt has joined #openstack-dev | 18:48 | |
*** pmyers has joined #openstack-dev | 18:49 | |
*** mfer has joined #openstack-dev | 18:49 | |
*** kushal has quit IRC | 18:51 | |
*** krtaylor has quit IRC | 18:51 | |
*** riskable has joined #openstack-dev | 18:53 | |
*** ruhe has quit IRC | 18:53 | |
*** buzztroll has quit IRC | 18:54 | |
*** buzztroll has joined #openstack-dev | 18:55 | |
*** exed has joined #openstack-dev | 18:56 | |
*** melwitt has joined #openstack-dev | 18:56 | |
*** moted has quit IRC | 18:57 | |
*** ndipanov is now known as ndipanov_gone | 18:58 | |
*** dhellmannhk has joined #openstack-dev | 18:59 | |
*** briancline has joined #openstack-dev | 18:59 | |
*** vuil has quit IRC | 18:59 | |
*** buzztroll has quit IRC | 19:00 | |
*** moted has joined #openstack-dev | 19:01 | |
*** DinaBelova has quit IRC | 19:02 | |
*** buzztroll has joined #openstack-dev | 19:02 | |
*** navneet_ has quit IRC | 19:03 | |
stevemar | morganfainberg, dolphm is +2'ing patches and he's not on IRC, how suspicious | 19:04 |
dstanek | stevemar: maybe he just needs some quiet time | 19:04 |
stevemar | dstanek, unacceptable, as PTL he gets no quiet time | 19:05 |
*** nati_ueno has joined #openstack-dev | 19:05 | |
*** dhellmannhk has quit IRC | 19:08 | |
*** mrodden has joined #openstack-dev | 19:10 | |
dstanek | stevemar: as long as he is +2ing my stuff he can have all the quiet time he likes :) | 19:10 |
stevemar | dstanek, lol yes, i suppose that is one way of looking at it | 19:11 |
*** exed has quit IRC | 19:11 | |
*** joesavak has quit IRC | 19:11 | |
*** carl_baldwin has quit IRC | 19:11 | |
*** spzala has quit IRC | 19:11 | |
dstanek | so not sure what to do with this: https://review.openstack.org/#/c/54209/ | 19:12 |
*** marun has joined #openstack-dev | 19:12 | |
dstanek | reverify no bug? | 19:12 |
*** carl_baldwin has joined #openstack-dev | 19:12 | |
stevemar | dstanek, i believe so | 19:13 |
stevemar | it says depends on a change that failed to merge, when that dependency was clearly merged? | 19:14 |
*** vipul-away is now known as vipul | 19:14 | |
* stevemar shrugs, i'd try reverify no bug | 19:14 | |
*** ccorrigan has joined #openstack-dev | 19:15 | |
*** vuil has joined #openstack-dev | 19:16 | |
*** reed has joined #openstack-dev | 19:18 | |
*** terriyu has joined #openstack-dev | 19:18 | |
*** atiwari has joined #openstack-dev | 19:18 | |
*** ykhodork has joined #openstack-dev | 19:18 | |
*** jaypipes has joined #openstack-dev | 19:18 | |
*** READ10 has joined #openstack-dev | 19:18 | |
*** jergerber has joined #openstack-dev | 19:18 | |
*** dvarga has joined #openstack-dev | 19:18 | |
*** jcoufal has joined #openstack-dev | 19:18 | |
*** Anticimex has joined #openstack-dev | 19:18 | |
*** fungi has joined #openstack-dev | 19:18 | |
*** erkules has joined #openstack-dev | 19:18 | |
*** jdennis has joined #openstack-dev | 19:18 | |
*** slagle has joined #openstack-dev | 19:18 | |
*** danjared_ has joined #openstack-dev | 19:18 | |
*** arosen has joined #openstack-dev | 19:18 | |
*** luisbg has joined #openstack-dev | 19:18 | |
*** andymccr has joined #openstack-dev | 19:18 | |
dstanek | stevemar: yeah i think morganfainberg kicked it because there was a transient failure on it | 19:18 |
*** stevemar has quit IRC | 19:19 | |
*** gyee has joined #openstack-dev | 19:19 | |
*** mangelajo has quit IRC | 19:22 | |
*** Artpicre has quit IRC | 19:22 | |
*** Artpicre has joined #openstack-dev | 19:23 | |
*** rushiagr has joined #openstack-dev | 19:24 | |
*** litong has quit IRC | 19:25 | |
mriedem | mordred: ping | 19:26 |
mordred | mriedem: sup? | 19:26 |
mriedem | mordred: hey, i think i have the first blueprint for sqlalchemy-migrate, just wondering if i need to send it to the mailing list or anything? https://blueprints.launchpad.net/sqlalchemy-migrate/+spec/add-db2-support | 19:27 |
mordred | mriedem: couldn't hurt | 19:27 |
mriedem | mordred: ok | 19:27 |
*** vipul is now known as vipul-away | 19:29 | |
*** odyssey4me2 has joined #openstack-dev | 19:29 | |
*** odyssey4me3 has joined #openstack-dev | 19:30 | |
*** jorisroovers has joined #openstack-dev | 19:32 | |
*** jroovers has quit IRC | 19:32 | |
*** beagles has quit IRC | 19:32 | |
*** mfer has quit IRC | 19:33 | |
*** mfer has joined #openstack-dev | 19:33 | |
*** odyssey4me2 has quit IRC | 19:34 | |
*** terriyu has quit IRC | 19:35 | |
*** vartom114 has quit IRC | 19:35 | |
*** alunduil has quit IRC | 19:36 | |
*** krtaylor has joined #openstack-dev | 19:37 | |
*** SergeyLukjanov is now known as _SergeyLukjanov | 19:40 | |
*** mattfarina has joined #openstack-dev | 19:40 | |
*** ricardoas has quit IRC | 19:40 | |
*** _SergeyLukjanov has quit IRC | 19:40 | |
*** topol has quit IRC | 19:41 | |
*** willingc has quit IRC | 19:41 | |
*** willingc has joined #openstack-dev | 19:41 | |
*** mfer has quit IRC | 19:42 | |
*** rongze has joined #openstack-dev | 19:42 | |
*** avishay has quit IRC | 19:43 | |
*** mattfarina is now known as mfer | 19:43 | |
*** willingc_ has joined #openstack-dev | 19:44 | |
*** SergeyLukjanov has joined #openstack-dev | 19:44 | |
*** willingc has quit IRC | 19:44 | |
*** mfer has quit IRC | 19:45 | |
*** enmand has quit IRC | 19:45 | |
*** angdraug has quit IRC | 19:46 | |
*** rongze has quit IRC | 19:47 | |
*** mfer has joined #openstack-dev | 19:47 | |
*** xarses has quit IRC | 19:48 | |
*** souvik has quit IRC | 19:48 | |
*** cjwilson has joined #openstack-dev | 19:51 | |
*** exed has joined #openstack-dev | 19:52 | |
*** davlaps has joined #openstack-dev | 19:54 | |
morganfainberg | dstanek, you'll notice i like to watch the gate jobs and check queue and get rechecks in / reverifies as quickly as possible. rebasing becasue of a jenkins failure that wasn't followed up on is rteally annoying ;) | 19:54 |
*** __nikhil__ is now known as nikhil_ | 19:55 | |
*** lsmola has quit IRC | 19:55 | |
*** nikhil_ is now known as Guest13638 | 19:55 | |
*** spzala has joined #openstack-dev | 19:56 | |
morganfainberg | dstanek, seems to need a rebase... https://review.openstack.org/#/c/54209/ | 19:58 |
morganfainberg | if you're not around i'll see waht i can do about that | 19:58 |
*** SergeyLukjanov has quit IRC | 19:58 | |
*** mangelajo has joined #openstack-dev | 19:58 | |
*** eglynn has joined #openstack-dev | 19:59 | |
*** datsun180b has quit IRC | 19:59 | |
*** SergeyLukjanov has joined #openstack-dev | 20:00 | |
*** xarses has joined #openstack-dev | 20:00 | |
*** HenryG has quit IRC | 20:01 | |
*** dprince has joined #openstack-dev | 20:01 | |
*** sarob has joined #openstack-dev | 20:03 | |
*** freedomhui has joined #openstack-dev | 20:03 | |
*** Guest13638 is now known as nikhil___ | 20:03 | |
mfer | folks, if you're building apps in cloud as opposed to standing up openstack or developing openstack where is the right place to discuss that stuff? | 20:03 |
*** eglynn has quit IRC | 20:04 | |
*** mangelajo has quit IRC | 20:04 | |
*** stevemar has joined #openstack-dev | 20:04 | |
*** jergerber has quit IRC | 20:05 | |
*** ykhodork has quit IRC | 20:05 | |
*** jergerbe_ has joined #openstack-dev | 20:05 | |
*** nati_ueno has quit IRC | 20:06 | |
*** nati_ueno has joined #openstack-dev | 20:07 | |
*** pmathews has joined #openstack-dev | 20:07 | |
*** ykhodork has joined #openstack-dev | 20:07 | |
*** DennyZhang has joined #openstack-dev | 20:08 | |
xarses | mfer: if you are having issues with the API, this may be the place. Operations style questions are usually best asked in #Openstack | 20:08 |
*** freedomhui has quit IRC | 20:08 | |
*** exed has quit IRC | 20:08 | |
stevemar | bknudson: did you get the debug env working? | 20:08 |
bknudson | stevemar: it works for me. | 20:08 |
bknudson | give it a try | 20:08 |
bknudson | and post any updates to the issue. | 20:08 |
bknudson | (to the review) | 20:08 |
*** pcm_ has quit IRC | 20:09 | |
stevemar | bknudson: yeah, i gave it a shot earlier but it didn't seem to work (i was in a rush to get out the door) | 20:09 |
stevemar | bknudson, i'll take a second look at it now | 20:09 |
bknudson | stevemar: it was only working for me before because I had that temporary file from an earlier test... :( | 20:09 |
*** cjwilson has quit IRC | 20:10 | |
bknudson | but I think I've got it fixed. check it out and give it a try. | 20:10 |
stevemar | oh just verified it? | 20:10 |
stevemar | cool | 20:10 |
morganfainberg | bknudson, you're running that with tox -edebug? or is that an env var? | 20:11 |
*** vuntz has quit IRC | 20:11 | |
bknudson | morganfainberg: tox -edebug <test-name) | 20:11 |
morganfainberg | bknudson, awesome. i understood how those work "correctly" then. | 20:12 |
mfer | xarses: it's more than issues with APIs. thinking like design patterns, real world usage, software packages for in cloud dev. | 20:12 |
morganfainberg | bknudson, debug on the test like that should be nice to have. | 20:12 |
mfer | in cloud is different from developing a cloud | 20:12 |
bknudson | if it winds up being handy for others then should clean it up. | 20:13 |
bknudson | probably create a random temp file rather than the named on | 20:13 |
*** vuil has quit IRC | 20:14 | |
*** marun has quit IRC | 20:15 | |
stevemar | bknudson: hmm, nope, doesn't seem to be stopping for me: http://pasteraw.com/94y5qlb4lcapotgggihhqux7bmfez3k | 20:15 |
*** haleyb_ is now known as haleyb | 20:15 | |
bknudson | stevemar: there's a couple reasons for running 0 tests I've seen- | 20:15 |
bknudson | doesn't match a test name | 20:15 |
bknudson | or the test fails to compile/run | 20:15 |
stevemar | oh | 20:16 |
*** thedodd has quit IRC | 20:16 | |
bknudson | stevemar: I think in this case you need to provide the full test name, and a module isn't going to work. | 20:16 |
morganfainberg | wow. | 20:16 |
bknudson | because it doesn't run discovery. | 20:16 |
morganfainberg | i don't think i've seen a rebase fail this badly in a while. | 20:16 |
bknudson | we were asking for it! | 20:16 |
bknudson | stevemar: so if you were to run, for example tox -epy27 keystone.tests.test_sql_migrate_extension | 20:17 |
bknudson | it should run your test and then fail | 20:17 |
bknudson | but it will tell you what the full test name is. | 20:17 |
bknudson | and you can use that with tox -edebug | 20:18 |
*** afazekas has quit IRC | 20:18 | |
*** jimfehlig has left #openstack-dev | 20:18 | |
*** SumitNaiksatam has quit IRC | 20:19 | |
*** DennyZhang has quit IRC | 20:20 | |
*** hughsaunders has joined #openstack-dev | 20:20 | |
stevemar | bknudson: okay, i didn't realize that | 20:20 |
*** vipul-away is now known as vipul | 20:21 | |
stevemar | bknudson, i thought you could just call the test suite or file in general | 20:21 |
stevemar | seems to only work if you specify a single test | 20:21 |
bknudson | stevemar: I'm sure there's a way to improve the tox.ini to do that... would need to run the discovery stuff. | 20:21 |
*** eglynn has joined #openstack-dev | 20:22 | |
*** jcoufal has quit IRC | 20:23 | |
*** tmclaugh[work] has quit IRC | 20:24 | |
*** mangelajo has joined #openstack-dev | 20:25 | |
*** dsirrine has quit IRC | 20:27 | |
*** nplanel has joined #openstack-dev | 20:29 | |
*** mangelajo has quit IRC | 20:30 | |
*** novas0x2a|laptop has quit IRC | 20:30 | |
*** mkollaro has joined #openstack-dev | 20:31 | |
*** novas0x2a|laptop has joined #openstack-dev | 20:31 | |
*** vuil has joined #openstack-dev | 20:33 | |
*** rushiagr has quit IRC | 20:41 | |
*** ayoung has quit IRC | 20:41 | |
*** vuil has quit IRC | 20:42 | |
*** radez is now known as radez_g0n3 | 20:42 | |
*** rongze has joined #openstack-dev | 20:43 | |
*** READ10 has quit IRC | 20:44 | |
*** epopt37 has quit IRC | 20:45 | |
*** mfer has quit IRC | 20:45 | |
*** dvarga has quit IRC | 20:46 | |
*** nermina has quit IRC | 20:46 | |
*** mrda has joined #openstack-dev | 20:47 | |
*** rongze has quit IRC | 20:48 | |
*** pmyers has quit IRC | 20:50 | |
*** dbalog has quit IRC | 20:51 | |
*** jergerbe_ has quit IRC | 20:51 | |
*** dstanek has quit IRC | 20:52 | |
*** jprovazn has quit IRC | 20:53 | |
*** epopt37 has joined #openstack-dev | 20:57 | |
*** boden has quit IRC | 20:58 | |
*** ayoung has joined #openstack-dev | 20:58 | |
*** nati_uen_ has joined #openstack-dev | 20:59 | |
*** gyee has quit IRC | 21:00 | |
*** jergerber has joined #openstack-dev | 21:00 | |
*** michchap has quit IRC | 21:01 | |
*** nati_ueno has quit IRC | 21:03 | |
*** michchap has joined #openstack-dev | 21:03 | |
*** freedomhui has joined #openstack-dev | 21:03 | |
*** krtaylor has quit IRC | 21:05 | |
*** jergerber has quit IRC | 21:05 | |
*** arosen1 has joined #openstack-dev | 21:06 | |
*** Chicago has quit IRC | 21:07 | |
*** balar_ has joined #openstack-dev | 21:07 | |
*** mlavalle has quit IRC | 21:07 | |
*** bdpayne has joined #openstack-dev | 21:08 | |
*** freedomhui has quit IRC | 21:08 | |
*** vladikr has quit IRC | 21:08 | |
balar_ | This question may have been asked before - is there a clean way of completely stopping devstack and restarting it without having to re-initialize the database, re-install packages etc.? | 21:09 |
clarkb | balar_: unstack then rejoin-stack.sh I think | 21:09 |
*** SumitNaiksatam has joined #openstack-dev | 21:10 | |
*** spzala has quit IRC | 21:10 | |
*** ayoung has quit IRC | 21:11 | |
*** mlavalle has joined #openstack-dev | 21:11 | |
*** arosen1 has quit IRC | 21:11 | |
*** dprince has quit IRC | 21:11 | |
*** rkukura has quit IRC | 21:12 | |
*** achampion has quit IRC | 21:12 | |
*** cdub_ has quit IRC | 21:13 | |
*** SumitNaiksatam has quit IRC | 21:14 | |
*** mikeoutland has quit IRC | 21:14 | |
*** mikeoutland has joined #openstack-dev | 21:15 | |
*** ayoung has joined #openstack-dev | 21:16 | |
*** mikeoutland has quit IRC | 21:19 | |
*** ayoung has quit IRC | 21:20 | |
*** sarob has quit IRC | 21:22 | |
*** sgordon` has joined #openstack-dev | 21:24 | |
*** jhesketh has joined #openstack-dev | 21:24 | |
*** jhesketh__ has joined #openstack-dev | 21:24 | |
*** sgordon has quit IRC | 21:24 | |
*** ayoung has joined #openstack-dev | 21:25 | |
*** mangelajo has joined #openstack-dev | 21:25 | |
*** ilyashakhat has joined #openstack-dev | 21:25 | |
*** sandywalsh_ has quit IRC | 21:26 | |
*** ilyashakhat_ has quit IRC | 21:26 | |
*** sarob has joined #openstack-dev | 21:26 | |
*** raildo has quit IRC | 21:27 | |
*** sgordon has joined #openstack-dev | 21:27 | |
*** sgordon has joined #openstack-dev | 21:27 | |
*** isd has quit IRC | 21:28 | |
*** dstanek has joined #openstack-dev | 21:29 | |
*** mangelajo has quit IRC | 21:30 | |
*** sgordon` has quit IRC | 21:31 | |
*** sgordon` has joined #openstack-dev | 21:31 | |
*** sgordon has quit IRC | 21:31 | |
*** gmurphy has quit IRC | 21:33 | |
*** tellesnobrega has quit IRC | 21:34 | |
*** melwitt has quit IRC | 21:35 | |
*** melwitt has joined #openstack-dev | 21:35 | |
*** dsantos_ has quit IRC | 21:35 | |
*** thomasem has quit IRC | 21:35 | |
*** mriedem has quit IRC | 21:36 | |
*** jayg is now known as jayg|g0n3 | 21:36 | |
*** sushils has joined #openstack-dev | 21:39 | |
*** atiwari has quit IRC | 21:40 | |
balar_ | unstack does not stop all processes. Also, I think rejoin-stack.sh may start only processes tied to a screen. | 21:41 |
*** sandywalsh has joined #openstack-dev | 21:41 | |
*** willingc_ has quit IRC | 21:42 | |
*** willingc has joined #openstack-dev | 21:42 | |
clarkb | correct, it won't touch the stuff running as system services | 21:43 |
*** rongze has joined #openstack-dev | 21:44 | |
*** alunduil has joined #openstack-dev | 21:45 | |
ekarlso- | BobBallAway: ping me when back : p | 21:45 |
*** burt has quit IRC | 21:46 | |
*** willingc has quit IRC | 21:47 | |
*** kbringard has quit IRC | 21:47 | |
*** rongze has quit IRC | 21:49 | |
*** neelashah has quit IRC | 21:50 | |
*** jmontemayor has quit IRC | 21:52 | |
*** carl_baldwin has quit IRC | 21:54 | |
*** insanidade has quit IRC | 21:55 | |
*** vijendar has quit IRC | 21:58 | |
*** ruhe has joined #openstack-dev | 22:00 | |
*** nati_ueno has joined #openstack-dev | 22:00 | |
*** melwitt has quit IRC | 22:00 | |
*** mlavalle has quit IRC | 22:01 | |
*** colinmcnamara has quit IRC | 22:01 | |
dstanek | morganfainberg: yeah, working on it :-) | 22:01 |
*** lbragstad has quit IRC | 22:03 | |
*** nati_uen_ has quit IRC | 22:03 | |
*** melwitt has joined #openstack-dev | 22:03 | |
*** freedomhui has joined #openstack-dev | 22:04 | |
*** galstrom is now known as galstrom_zzz | 22:04 | |
*** mkollaro has quit IRC | 22:05 | |
morganfainberg | dstanek, cool | 22:05 |
dstanek | morganfainberg: it's a royale pain | 22:06 |
morganfainberg | dstanek, yeah you got hit with the assignment switch-over | 22:06 |
dstanek | morganfainberg: yup | 22:06 |
*** aspiers has quit IRC | 22:06 | |
morganfainberg | dstanek, it looks like only one or two items | 22:07 |
*** SergeyLukjanov has quit IRC | 22:07 | |
dstanek | morganfainberg: i'm in the middle of rebasing the second commit, but it's trick-or-treat time for the kids | 22:08 |
dstanek | i'll finish up when i get back | 22:08 |
*** freedomhui has quit IRC | 22:08 | |
morganfainberg | dstanek, hehe go enjoy trick or treat time! the code will still be there ;) | 22:09 |
*** ruhe has quit IRC | 22:11 | |
*** willingc has joined #openstack-dev | 22:13 | |
*** sdake has joined #openstack-dev | 22:13 | |
*** gmurphy has joined #openstack-dev | 22:14 | |
*** fifieldt has joined #openstack-dev | 22:15 | |
*** jorisroovers has quit IRC | 22:16 | |
*** e1mer has joined #openstack-dev | 22:18 | |
*** rcleere has quit IRC | 22:18 | |
*** kbrierly has quit IRC | 22:19 | |
*** morazi is now known as morazi-afk | 22:19 | |
*** willingc has quit IRC | 22:21 | |
*** mangelajo has joined #openstack-dev | 22:25 | |
*** yolanda has joined #openstack-dev | 22:26 | |
*** pmathews has quit IRC | 22:27 | |
*** mangelajo has quit IRC | 22:28 | |
*** nplanel has quit IRC | 22:28 | |
*** markmcclain has joined #openstack-dev | 22:32 | |
*** nplanel has joined #openstack-dev | 22:33 | |
*** krotscheck has quit IRC | 22:35 | |
*** bknudson has quit IRC | 22:37 | |
*** bdpayne has quit IRC | 22:40 | |
*** amerine has joined #openstack-dev | 22:40 | |
*** FunnyLookinHat has quit IRC | 22:43 | |
*** melwitt1 has joined #openstack-dev | 22:44 | |
*** rongze has joined #openstack-dev | 22:45 | |
*** melwitt has quit IRC | 22:45 | |
*** amerine has quit IRC | 22:45 | |
*** dstanek has quit IRC | 22:46 | |
*** eglynn has quit IRC | 22:46 | |
*** amerine has joined #openstack-dev | 22:47 | |
*** diogogmt has quit IRC | 22:47 | |
*** krotscheck has joined #openstack-dev | 22:49 | |
morganfainberg | ayoung, ping | 22:49 |
*** dachary has quit IRC | 22:49 | |
*** rongze has quit IRC | 22:49 | |
*** giulivo has quit IRC | 22:50 | |
*** mattmalesky has joined #openstack-dev | 22:50 | |
*** dachary has joined #openstack-dev | 22:50 | |
*** amohn9 has joined #openstack-dev | 22:51 | |
*** JordanP has joined #openstack-dev | 22:51 | |
*** tmclaugh[work] has joined #openstack-dev | 22:51 | |
*** amohn9 has left #openstack-dev | 22:52 | |
*** krotscheck has quit IRC | 22:52 | |
*** ykhodork has quit IRC | 22:52 | |
*** nachi has left #openstack-dev | 22:54 | |
*** odyssey4me4 has joined #openstack-dev | 22:55 | |
*** nati_ueno has quit IRC | 22:57 | |
*** odyssey4me3 has quit IRC | 22:57 | |
*** herndon has quit IRC | 22:58 | |
*** jvrbanac has quit IRC | 22:58 | |
*** markmcclain has quit IRC | 22:58 | |
*** jvrbanac has joined #openstack-dev | 22:59 | |
*** odyssey4me4 has quit IRC | 22:59 | |
*** buzztroll has quit IRC | 22:59 | |
*** jvrbanac has quit IRC | 23:00 | |
*** jvrbanac has joined #openstack-dev | 23:00 | |
*** isd has joined #openstack-dev | 23:01 | |
*** isd has left #openstack-dev | 23:01 | |
*** jvrbanac has quit IRC | 23:01 | |
*** davlaps has quit IRC | 23:01 | |
*** krotscheck has joined #openstack-dev | 23:03 | |
*** freedomhui has joined #openstack-dev | 23:04 | |
*** nati_ueno has joined #openstack-dev | 23:04 | |
*** vladan_ has quit IRC | 23:05 | |
*** ondergetekende has quit IRC | 23:05 | |
*** eharney has quit IRC | 23:06 | |
*** sumanthns has quit IRC | 23:06 | |
*** ondergetekende has joined #openstack-dev | 23:06 | |
*** bdpayne has joined #openstack-dev | 23:06 | |
*** vladan_ has joined #openstack-dev | 23:07 | |
*** freedomhui has quit IRC | 23:09 | |
*** JordanP has quit IRC | 23:11 | |
*** sdake has quit IRC | 23:11 | |
*** jorisroovers has joined #openstack-dev | 23:11 | |
*** bdpayne has quit IRC | 23:12 | |
*** danwent has quit IRC | 23:17 | |
*** jvrbanac has joined #openstack-dev | 23:19 | |
*** gyee has joined #openstack-dev | 23:19 | |
*** bdpayne has joined #openstack-dev | 23:20 | |
*** jvrbanac has quit IRC | 23:21 | |
*** buzztroll has joined #openstack-dev | 23:21 | |
*** diogogmt has joined #openstack-dev | 23:21 | |
*** aeperezt has quit IRC | 23:23 | |
*** mrodden has quit IRC | 23:24 | |
*** mangelajo has joined #openstack-dev | 23:25 | |
*** enmand has joined #openstack-dev | 23:28 | |
*** mangelajo has quit IRC | 23:28 | |
*** Khyati_ has joined #openstack-dev | 23:30 | |
*** carl_baldwin has joined #openstack-dev | 23:31 | |
*** carl_baldwin has left #openstack-dev | 23:31 | |
*** aspiers has joined #openstack-dev | 23:34 | |
*** tmclaugh[work] has quit IRC | 23:36 | |
*** SergeyLukjanov has joined #openstack-dev | 23:38 | |
*** mrodden has joined #openstack-dev | 23:38 | |
*** jvrbanac has joined #openstack-dev | 23:39 | |
*** enmand has quit IRC | 23:39 | |
*** jorisroovers has quit IRC | 23:39 | |
*** jamielennox has quit IRC | 23:40 | |
*** mrodden1 has joined #openstack-dev | 23:41 | |
*** tmclaugh[work] has joined #openstack-dev | 23:41 | |
*** jvrbanac_1 has joined #openstack-dev | 23:41 | |
*** jvrbanac_1 has quit IRC | 23:42 | |
*** Artpicre has quit IRC | 23:42 | |
*** mrodden has quit IRC | 23:43 | |
*** jamielennox has joined #openstack-dev | 23:43 | |
*** rongze has joined #openstack-dev | 23:45 | |
*** rongze has quit IRC | 23:50 | |
*** diogogmt has quit IRC | 23:51 | |
*** gyee has quit IRC | 23:55 | |
*** harlowja has quit IRC | 23:55 | |
*** harlowja has joined #openstack-dev | 23:56 | |
*** nati_ueno has quit IRC | 23:56 | |
*** e1mer has quit IRC | 23:56 | |
*** nati_ueno has joined #openstack-dev | 23:57 | |
*** nati_uen_ has joined #openstack-dev | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!