Thursday, 2016-08-11

*** toddjohn has quit IRC00:12
*** toddjohn has joined #openstack-mistral00:18
*** tonytan4ever has quit IRC00:37
*** toddjohn has quit IRC00:58
*** cheneydc has joined #openstack-mistral01:05
*** cheneydc has quit IRC01:06
*** bobh has joined #openstack-mistral01:07
*** toddjohn has joined #openstack-mistral01:08
*** toddjohn has quit IRC01:16
*** tonytan4ever has joined #openstack-mistral01:38
*** tonytan4ever has quit IRC01:42
*** chlong|mtg has joined #openstack-mistral01:57
*** tonytan4ever has joined #openstack-mistral02:01
*** tonytan_brb has joined #openstack-mistral02:04
*** tonytan4ever has quit IRC02:07
*** brian_price has quit IRC03:09
*** krotscheck_ has joined #openstack-mistral03:12
*** krotscheck has quit IRC03:13
*** krotscheck_ is now known as krotscheck03:14
*** tonytan_brb has quit IRC03:34
*** jpeeler has quit IRC03:47
*** jtomasek has quit IRC03:48
*** bobh has quit IRC03:51
*** jpeeler has joined #openstack-mistral03:53
*** jpeeler has quit IRC03:53
*** jpeeler has joined #openstack-mistral03:54
*** jtomasek has joined #openstack-mistral03:59
*** vishwanathj has quit IRC04:20
*** vishwanathj has joined #openstack-mistral04:21
*** janki has joined #openstack-mistral04:27
*** tonytan4ever has joined #openstack-mistral04:34
*** tonytan4ever has quit IRC04:39
*** jaosorior has joined #openstack-mistral05:23
*** SonalOjha has joined #openstack-mistral05:24
rakhmerovjaosorior: I usually do versioned05:41
rakhmerovin fact, Mistral doesn't support Keystone v2 now but we have some plans to do so05:41
*** evgenyl_ has joined #openstack-mistral05:44
jaosoriorrakhmerov: you mean v3?05:44
jaosorioras far as I've seen it doesn't support v3. Because of how tied it is to the v2.0 keystone catalog05:45
jaosoriorpretty much the whole utils.keystone should be removed05:45
jaosoriorI think05:45
jaosoriorbut alright, versioned it is. thanks rakhmerov05:45
rakhmerovwe need trusts from V3 which doesn't exist in V205:46
rakhmerovas far as catalog, looks like we just don't do it properly05:46
rakhmerovsomeone is now doing a revision of how we integrate with Keystone05:46
rakhmerovI'm not too good at that )05:46
jaosoriorrakhmerov: not too many people are. The keystone libraries are kinda difficult to go around05:47
rakhmerovyes05:47
jaosoriorrakhmerov: let me know when there's some patches ready, I can help out reviewing05:48
rakhmerovI know it pretty well when it comes to how auth method work, sessions, plugins etc. I did research this stuff recently. But I don't know much about catalog05:48
rakhmerovok05:48
*** evgenyl has quit IRC05:48
*** aspiers has quit IRC05:48
*** evgenyl_ is now known as evgenyl05:49
*** Ephur has quit IRC05:49
*** aspiers has joined #openstack-mistral05:49
jaosoriorrakhmerov: there's not much to the catalog really. Only thing to know as users of keystone is that it defers from v2 to v3 and that we should be using libraries to access it's contents. Never grab the json structure and fetch stuff from there05:51
rakhmerovok, I see05:52
rakhmerovand where do we do it?05:52
rakhmerovin OpenStack actions I guess somewhere?05:52
jaosoriorso, for instance05:54
jaosoriorwhen trying to get the endpoint of a specific service05:54
rakhmerovok05:54
jaosoriorthe keystone libraries provide functions to do so05:54
jaosoriormistral just needs to have a service user and password05:54
jaosoriorand then it can query keystone like that05:54
rakhmerovjaosorior: yep05:54
rakhmerovthis code was written really long ago and hasn't changed since then05:55
jaosoriorI see05:55
rakhmerovmaybe there weren't any libraries for this at that time05:55
rakhmerovbut yes, we'll revisit it05:55
rakhmerova guy from Nokia is looking at the whole Keystone thing now in Mistral05:56
jaosoriorrakhmerov: No biggie, I think almost every project has had to change their code base because of things like this.05:56
rakhmerovtrue05:56
*** vishwanathj has quit IRC06:15
*** vishwanathj has joined #openstack-mistral06:15
SonalOjha@here I see error while initializing action class , Failure caused by error in task 'xxxxx': Failed to initialize action xxxxx. Action init params = ['auth_url', 'admin_domain_name']. Actual init params = [u'auth_url', u'admin_domain_name']. More info: 'type' object does not support item assignment06:22
SonalOjha@here : is there any issue with the oslo.utils ???06:23
SonalOjha@here I see oslo.utils being used while creating instance of action class06:23
rakhmerovSonalOjha: what action? how do you pass parameters? what Mistral version?06:26
rakhmerovplease write all steps to reproduce it06:26
SonalOjha@rakhmerov : Mistral is of liberty version06:26
rakhmerovideally, file a bug06:26
SonalOjha@rakhmerov : I have created custom actions, the same action was working earlier I see it happening recently06:27
SonalOjha@rakhmerov : not sure how to reproduce it, but I am rerunning the same failed task ... and its showing the same error of unable to initialize action class06:29
rakhmerovhm...06:29
rakhmerovdid you try with other version?06:29
rakhmerovwe actually don't support Liberty actively06:30
SonalOjha@rakhmerov : no, havent really tried other version06:30
SonalOjha@rakhmerov : I think it to be oslo utils issue06:30
SonalOjha@rakhmerov : it doesnt seem to be mistral issue as mistral uses oslo utils to create action object06:31
SonalOjha@rakhmerov : see this https://github.com/openstack/mistral/blob/master/mistral/actions/action_factory.py06:33
rakhmerovyes06:34
rakhmerovis it happening here? action_class = importutils.import_class(action_class_str)06:35
rakhmerovdo you have a stack trace?06:35
SonalOjhathats the only error I see .. I tried adding some logs and it seems to fail at line 60 https://github.com/openstack/mistral/blob/stable/liberty/mistral/engine/default_executor.py#L6006:39
SonalOjha@rakhmerov : no stacktrace ... I see More info: 'type' object does not support item assignment in the mistral logs06:40
rakhmerovhm... weird06:41
rakhmerovmaybe the action class you created is not on python path?06:41
rakhmerovor something like that06:42
rakhmerovbecause, many many people create their actions and they work06:42
rakhmerovyou just need to make sure to plug them in properly (modifying setup.cfg entry points etc.)06:42
SonalOjha@rakhmerov : yeah, did like that ... its in the setup.cfg06:47
rakhmerovis your action in a separate python project?06:53
rakhmerovif yes, you have to install it to make it available globally06:53
*** shardy has joined #openstack-mistral07:10
SonalOjha@rakhmerov : yeah its been done the same way07:21
SonalOjha@rakhmerov : the same stuff had been working07:21
*** jpich has joined #openstack-mistral07:43
*** chlong|mtg has quit IRC07:46
*** tonytan4ever has joined #openstack-mistral07:51
openstackgerrithardik proposed openstack/python-mistralclient: Added ID option to update Action Definition  https://review.openstack.org/34681407:52
*** jaosorior is now known as jaosorior_brb07:53
*** tonytan4ever has quit IRC07:56
openstackgerrithardik proposed openstack/mistral: Filtering support for actions  https://review.openstack.org/26997108:10
*** pbelamge has joined #openstack-mistral08:18
*** jaosorior_brb is now known as jaosorior08:44
openstackgerritRenat Akhmerov proposed openstack/mistral: Increase size of 'task_executions_v2.unique_key' column  https://review.openstack.org/35391509:03
openstackgerritRenat Akhmerov proposed openstack/mistral: Increase size of 'task_executions_v2.unique_key' column  https://review.openstack.org/35391509:23
*** mflobo has joined #openstack-mistral09:25
*** SonalOjha has quit IRC09:34
openstackgerritRenat Akhmerov proposed openstack/mistral: Add 'join after join' test  https://review.openstack.org/35393209:37
openstackgerritRenat Akhmerov proposed openstack/mistral: Increase size of 'task_executions_v2.unique_key' column  https://review.openstack.org/35391509:39
openstackgerrithardik proposed openstack/mistral: Filtering support for actions  https://review.openstack.org/26997109:40
openstackgerritRenat Akhmerov proposed openstack/mistral: Fix task 'defer'  https://review.openstack.org/35396610:33
rakhmerovddeja: please review and approve https://review.openstack.org/#/c/353915/10:34
rakhmerovakuznetsova: hi, I'd like to ask you too10:35
openstackgerrithardik proposed openstack/python-mistralclient: Added ID option to update Action Definition  https://review.openstack.org/34681410:35
rakhmerovand this too: https://review.openstack.org/#/c/353966/10:36
rakhmerovit's a small bug nasty bug10:36
openstackgerrithardik proposed openstack/python-mistralclient: Added ID option to update Action Definition  https://review.openstack.org/34681410:38
ddejarakhmerov: done10:38
rakhmerovthanks10:44
openstackgerritRenat Akhmerov proposed openstack/mistral: Add 'wait-before' policy test with two chained tasks  https://review.openstack.org/35397910:49
openstackgerritMerged openstack/mistral: Add 'join after join' test  https://review.openstack.org/35393210:51
openstackgerritRenat Akhmerov proposed openstack/mistral: Fix _possible_route() method to account for not completed tasks  https://review.openstack.org/35398411:01
openstackgerritRenat Akhmerov proposed openstack/mistral: Add 'wait-before' policy test with two chained tasks  https://review.openstack.org/35397911:02
openstackgerritMerged openstack/mistral: Increase size of 'task_executions_v2.unique_key' column  https://review.openstack.org/35391511:06
openstackgerritRenat Akhmerov proposed openstack/mistral: Fix _possible_route() method to account for not completed tasks  https://review.openstack.org/35398411:13
rakhmerovddeja, akuznetsova, hparekh: another nasty bug with small fix https://review.openstack.org/#/c/353984/11:16
*** jaosorior has quit IRC11:29
*** jaosorior has joined #openstack-mistral11:30
*** chlong|mtg has joined #openstack-mistral11:43
openstackgerritMerged openstack/mistral: Fix task 'defer'  https://review.openstack.org/35396611:46
openstackgerritRenat Akhmerov proposed openstack/mistral: Fix task post completion scheduling  https://review.openstack.org/35400511:48
rakhmerovddeja, hparekh: one more https://review.openstack.org/#/c/354005/11:50
*** tonytan4ever has joined #openstack-mistral11:53
*** tonytan4ever has quit IRC11:57
*** venkat has joined #openstack-mistral12:03
openstackgerritMerged openstack/mistral: Fix _possible_route() method to account for not completed tasks  https://review.openstack.org/35398412:17
*** kzaitsev_mb has joined #openstack-mistral12:25
kzaitsev_mbrakhmerov: hi, could you please approve https://review.openstack.org/#/c/352896/112:26
rakhmerovhi12:26
rakhmerovyou mean I should vote +1?12:27
*** dprince has joined #openstack-mistral12:27
rakhmerovit's the only thing I can do12:27
rakhmerovkzaitsev_mb: ^12:27
*** venkat has quit IRC12:29
kzaitsev_mbyep )12:30
kzaitsev_mbthanks =) it's quite unlikely our client update would break smth in mistral I guess12:31
kzaitsev_mbosc client might be a bit harder though12:31
openstackgerritMerged openstack/mistral: Fix task post completion scheduling  https://review.openstack.org/35400512:47
*** mflobo has quit IRC12:47
*** toddjohn has joined #openstack-mistral12:51
*** tonytan4ever has joined #openstack-mistral12:54
*** bobh has joined #openstack-mistral12:57
*** tonytan4ever has quit IRC12:57
*** tonytan4ever has joined #openstack-mistral12:57
*** toddjohn has quit IRC13:00
*** toddjohn has joined #openstack-mistral13:01
*** pbelamge has quit IRC13:01
*** pbelamge has joined #openstack-mistral13:01
*** toddjohn has quit IRC13:05
*** bobh has quit IRC13:15
openstackgerritMerged openstack/mistral: Make mistral work with amqp and zmq backends  https://review.openstack.org/35248013:25
openstackgerritMerged openstack/mistral: Add 'wait-before' policy test with two chained tasks  https://review.openstack.org/35397913:25
*** rbrady has joined #openstack-mistral13:27
*** jistr has quit IRC13:28
*** tonytan4ever has quit IRC13:29
*** jistr has joined #openstack-mistral13:30
*** jaosorior is now known as jaosorior_mtg13:36
*** toddjohn has joined #openstack-mistral13:37
*** toddjohn has quit IRC13:37
*** toddjohn has joined #openstack-mistral13:37
*** bobh has joined #openstack-mistral13:54
openstackgerritDawid Deja proposed openstack/mistral: Fix for not working 'run-action' on kombu driver  https://review.openstack.org/35409113:57
*** dprince_ has joined #openstack-mistral14:03
*** dprince has quit IRC14:04
*** tonytan4ever has joined #openstack-mistral14:05
*** tonytan4ever has quit IRC14:07
*** tonytan4ever has joined #openstack-mistral14:08
*** tonytan_brb has joined #openstack-mistral14:14
*** tonytan4ever has quit IRC14:14
*** jistr is now known as jistr|call14:16
*** rrecio has joined #openstack-mistral14:25
*** tonytan_brb is now known as tonytan4ever14:27
*** chlong|mtg has quit IRC14:33
*** chlong|mtg has joined #openstack-mistral14:45
*** janki has quit IRC15:06
*** mflobo has joined #openstack-mistral15:06
*** jaosorior_mtg is now known as jaosorior15:17
*** jistr|call is now known as jistr15:21
*** catintheroof has joined #openstack-mistral15:27
*** kzaitsev_mb has quit IRC15:48
*** Ephur has joined #openstack-mistral15:53
*** kzaitsev_mb has joined #openstack-mistral15:55
*** Ravikiran_K has joined #openstack-mistral16:00
*** kzaitsev_mb has quit IRC16:09
*** kzaitsev_mb has joined #openstack-mistral16:14
*** jaosorior has quit IRC16:25
*** jpich has quit IRC16:37
*** toddjohn has quit IRC16:39
*** toddjohn has joined #openstack-mistral16:40
*** toddjohn has quit IRC16:44
*** tonytan4ever has quit IRC16:48
*** bobh has quit IRC16:58
*** Ravikiran_K has quit IRC17:04
*** catintheroof has quit IRC17:30
*** mflobo has quit IRC17:38
*** tonytan4ever has joined #openstack-mistral17:49
*** tonytan4ever has quit IRC17:54
*** bobh has joined #openstack-mistral17:59
*** bobh has quit IRC18:03
openstackgerritOpenStack Proposal Bot proposed openstack/python-mistralclient: Updated from global requirements  https://review.openstack.org/35431218:17
*** toddjohn has joined #openstack-mistral18:32
*** catintheroof has joined #openstack-mistral18:34
*** bobh has joined #openstack-mistral18:35
*** chlong|mtg has quit IRC18:37
*** chlong|mtg has joined #openstack-mistral18:38
*** gyee has joined #openstack-mistral18:43
*** kzaitsev_mb has quit IRC19:00
*** dprince_ has quit IRC19:08
*** catintheroof has quit IRC19:28
*** tonytan4ever has joined #openstack-mistral19:35
*** tonytan4ever has quit IRC19:40
*** kzaitsev_mb has joined #openstack-mistral19:46
*** tonytan4ever has joined #openstack-mistral19:52
*** catintheroof has joined #openstack-mistral20:00
*** toddjohn has quit IRC20:14
*** toddjohn has joined #openstack-mistral20:14
*** toddjohn has quit IRC20:18
*** kzaitsev_mb has quit IRC20:20
*** toddjohn has joined #openstack-mistral20:27
*** toddjohn has quit IRC20:29
*** toddjohn has joined #openstack-mistral20:29
*** toddjohn has quit IRC20:44
*** toddjohn has joined #openstack-mistral20:44
*** tonytan4ever has quit IRC20:46
*** toddjohn has quit IRC20:47
*** toddjohn has joined #openstack-mistral20:47
*** toddjohn_ has joined #openstack-mistral20:48
*** toddjoh__ has joined #openstack-mistral20:49
*** toddjohn has quit IRC20:52
*** toddjohn_ has quit IRC20:53
*** kzaitsev_mb has joined #openstack-mistral21:02
*** kzaitsev_mb has quit IRC21:11
*** kzaitsev_mb has joined #openstack-mistral21:16
*** bobh has quit IRC21:20
*** shardy has quit IRC21:21
*** tonytan4ever has joined #openstack-mistral21:21
*** bobh has joined #openstack-mistral21:33
*** bobh has quit IRC21:37
*** toddjoh__ has quit IRC21:47
*** kzaitsev_mb has quit IRC21:52
*** kzaitsev_mb has joined #openstack-mistral21:54
*** tonytan4ever has quit IRC22:09
*** kzaitsev_mb has quit IRC22:16
*** kzaitsev_mb has joined #openstack-mistral22:23
*** catintheroof has quit IRC22:35
*** kzaitsev_mb has quit IRC22:44
*** kzaitsev_mb has joined #openstack-mistral22:47
*** tonytan4ever has joined #openstack-mistral23:10
*** tonytan4ever has quit IRC23:14
*** pbelamge has quit IRC23:18
*** kzaitsev_mb has quit IRC23:29
*** kzaitsev_mb has joined #openstack-mistral23:29
*** rrecio has quit IRC23:34
openstackgerritJeff Peeler proposed openstack/mistral: Add client caching for OpenStack actions  https://review.openstack.org/34171723:44
*** toddjohn has joined #openstack-mistral23:53
*** toddjohn has quit IRC23:58

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!