Saturday, 2018-07-28

*** sambetts_ has quit IRC00:00
melwittyeah so, just wonder if there's some bizarre way a delete could miss the build request, similar to what mriedem was saying earlier for the bug we discussed earlier00:00
mnaseri might be like 5 steps behind your discussion so i might just be echoing stuff y'all already discusssed :p00:00
melwittnah00:00
melwittit's more likely that somehow a delete was partial00:01
*** shaohe_feng has joined #openstack-nova00:01
melwittbut I didn't find how last time I went spelunking in the code00:01
melwitt(the nah was, no, you're not echoing)00:02
mnaser:p00:02
*** sambetts_ has joined #openstack-nova00:02
mnaserim looking in nova/conductor/manager.py on how ending up with a build request but without instance_mapping00:02
*** gyee has quit IRC00:05
melwittbuild request is deleted once scheduled, so that means it had to be during the create process somewhere. ignore what I was saying about delete (unless it's a delete while booting? but I didn't see a way there either)00:08
*** shaohe_feng has quit IRC00:10
*** shaohe_feng has joined #openstack-nova00:11
mnasermelwitt: does instance.delete() get rid of the mapping?00:12
mnaseror does the mapping stay forever00:12
melwittmapping stays until you 'nova-manage db archive_deleted_rows'00:13
mnaserand we dont do that00:13
mnaserhmm00:13
melwittas of rocky, I believe00:13
mnasercause i went through the code and i couldn't find any instances where the instance mapping doesnt get deleted *after* the build request00:13
mnaserin nova/compute/api.py and nova/conductor/manager.py00:13
mnasernot sure if there is any other places to look00:13
melwittyeah, same00:13
mnaserit would be good to know if the InstanceMapping was created and deleted or just never created in the first place00:17
mnaserdont think there is an easy way to know that00:17
mnaserlet me try to look at logs00:17
*** artom has joined #openstack-nova00:18
*** shaohe_feng has quit IRC00:20
*** shaohe_feng has joined #openstack-nova00:21
*** artom has quit IRC00:24
mnasermelwitt: looks like a db server issue just a few seconds after the build request was created00:25
melwittinteresting. so possible that the instance mapping INSERT failed?00:26
mnaserlet me look at the stack traces of the failures00:26
melwittI mean, if it's really a few seconds, that would be too long after00:26
mnaserhopefully it shows where00:26
*** mlavalle has quit IRC00:27
mnasermelwitt: AHA00:27
mnaserstacktrace in db fail00:28
mnaserinst_mapping.create()00:28
melwittholy crap00:28
mnaserand looks like in the exception handling00:28
mnaserit does self._cleanup_build_artifacts(None, instances_to_build)00:28
mnaserso if a create failed, we do _cleanup_build_artifacts but maybe we need to make sure that we assume things don't exist in _cleanup_build_artifacts00:28
melwittand that *didn't* delete the build request? another db trace?00:29
melwittwe do00:29
mnaserwell i assume the exception handling failed too00:29
mnaserbecause the db was out00:29
melwittoh, yeah ok00:29
mnaserlet me share the stack trace00:29
mnaserhttp://paste.openstack.org/show/726772/00:30
melwittthis is wild. I really didn't think it was going to be that the create() failed due to db issues00:30
mnaseris there a transactional system in nova.objects?00:30
*** shaohe_feng has quit IRC00:30
mnaserlike maybe we can actually make the create build request and instance mapping a single transaction with commit00:30
melwittI've had it on my todo list to write a functional test that raises during the instance_mapping.create() to repro the bug, and to show how the orphan build request can't be deleted00:31
*** med_ has quit IRC00:31
*** shaohe_feng has joined #openstack-nova00:31
mnaserit would still fail but at least the build request wouldn't be there anymore00:31
melwitthm ... we could if we create a new method that does them both under the same oslo.db session decorator thing, I believe00:31
mnaseri guess this http request should have returned 50000:32
melwittto make it be one transaction00:32
mnaserso its not like the instance disappears under the user too00:32
mnaser"HTTP exception thrown: Unexpected API Error. Please report this at http://bugs.launchpad.net/nova/ and attach the Nova API log if possible." yup00:32
melwittvery interesting. this data is gold00:32
*** itlinux has joined #openstack-nova00:32
mnasermelwitt: is there any example of somewhere where this happens? i can write a test with failure of instance_mapping.create() and then make it in a single transaction00:32
mnaserthis == single transaction00:33
melwittoh, lemme see00:33
mnaseri should find other places where the db writes had failed and find their stack traces00:33
mnaserill do that too00:34
melwittthere are some things in here https://github.com/openstack/nova/blob/master/nova/api/openstack/placement/objects/resource_provider.py00:37
melwittspecifically this one https://github.com/openstack/nova/blob/master/nova/api/openstack/placement/objects/resource_provider.py#L403900:37
melwittthe note there explains it well00:38
*** med_ has joined #openstack-nova00:38
*** med_ has quit IRC00:38
*** med_ has joined #openstack-nova00:38
melwittawesome mnaser, thanks00:40
*** shaohe_feng has quit IRC00:40
*** shaohe_feng has joined #openstack-nova00:41
mnaserok i got a gold mine00:47
mnaseri retrieved a list of all the .save or .create that failed because of db errors00:48
mnaserwhich should be useful to group up together into a single transaction00:48
mnaserim just deduping the list00:48
mnaserfwiw -- grep _handle_dbapi_exception /var/log/nova/nova-api-wsgi.log -B70 | egrep 'nova.api.openstack.wsgi     .*\.(save|create)' -B100:49
melwittsweet00:50
*** shaohe_feng has quit IRC00:51
*** shaohe_feng has joined #openstack-nova00:52
*** vladikr has quit IRC00:53
melwittmnaser: do you want to write up a bug for this and include the trace paste and all? else I can do it later, I have to run soon00:54
*** itlinux_ has joined #openstack-nova00:54
*** linkmark has quit IRC00:54
*** itlinux_ has quit IRC00:55
mnasermelwitt: https://bugs.launchpad.net/nova/+bug/1784074 i added them all here00:55
openstackLaunchpad bug 1784074 in OpenStack Compute (nova) "Instances end up with no cell assigned in instance_mappings" [Medium,In progress] - Assigned to Matt Riedemann (mriedem)00:55
melwittokay00:56
*** itlinux__ has joined #openstack-nova00:56
melwittthink I'm going to create a new bug since the db fail thing is a bit different00:57
mnasermelwitt: it's up to you to how you see fit :)00:58
melwitt:)00:58
mnaserhttps://github.com/openstack/nova/blob/ff5cded9afa65cd4317ba0e3401692ed92c1d150/nova/api/openstack/placement/objects/project.py#L83-L9200:59
mnaseri think this is an easier pattern especially for create this stuff00:59
mnaserrather than a top level function (i think)00:59
melwittyeah01:00
mnaserhttps://github.com/openstack/nova/blob/16a2db6f23d150330dc82a56d0cf10366b004210/nova/objects/aggregate.py#L67-L7801:01
mnaserthis seems like an interesting pattern too01:01
mnaserim digging around code01:01
*** shaohe_feng has quit IRC01:01
mnaserim just curious/worry that wrapping things in the writer twice might break things01:02
mnaseri.e.: https://github.com/openstack/nova/blob/16a2db6f23d150330dc82a56d0cf10366b004210/nova/objects/instance_mapping.py#L75-L8601:02
*** shaohe_feng has joined #openstack-nova01:02
melwittit will, don't nest it01:02
melwittwell,01:03
melwittyou can't nest a write under a read01:03
mnasercan you nest two writes? or should i drop it from _create_in_db01:03
melwittso otherwise nesting is probably ok01:03
mnaserok cool01:03
melwittbut I don't know if I've tried it, intentionally anyway01:03
mnaserill make sure i have a failing test first to make sure it actually gets fixed01:04
*** vladikr has joined #openstack-nova01:05
melwittawesome, sounds great01:05
*** mrsoul` has joined #openstack-nova01:11
*** shaohe_feng has quit IRC01:11
*** shaohe_feng has joined #openstack-nova01:11
*** Guest23581 is now known as lamt01:13
*** mrsoul has quit IRC01:14
melwittmnaser: https://bugs.launchpad.net/nova/+bug/1784093 fyi, I assigned it to you01:17
openstackLaunchpad bug 1784093 in OpenStack Compute (nova) "Build requests can be orphaned without instance mappings" [Medium,Confirmed] - Assigned to Mohammed Naser (mnaser)01:17
mnasermelwitt: cool, i'm building up a test right now, i should probably have a patch later today if this doesnt end up much more complicated :>01:18
melwittokay, good luck. we'll take a look at it next week01:19
mnaserthanks, have a good weekend!01:19
melwittthanks and likewise!01:19
*** shaohe_feng has quit IRC01:21
*** Guest87808 has quit IRC01:24
*** shaohe_feng has joined #openstack-nova01:25
*** ABIX_Adamj has joined #openstack-nova01:27
*** shaohe_feng has quit IRC01:32
*** shaohe_feng has joined #openstack-nova01:32
*** shaohe_feng has quit IRC01:42
*** shaohe_feng has joined #openstack-nova01:43
*** openstackstatus has quit IRC01:46
*** openstackstatus has joined #openstack-nova01:48
*** ChanServ sets mode: +v openstackstatus01:48
*** hoonetorg has quit IRC01:49
*** gongysh has quit IRC01:49
*** med_ has quit IRC01:50
*** shaohe_feng has quit IRC01:52
*** antosh has joined #openstack-nova01:54
*** shaohe_feng has joined #openstack-nova01:54
*** shaohe_feng has quit IRC02:02
*** shaohe_feng has joined #openstack-nova02:05
*** hoonetorg has joined #openstack-nova02:06
*** tbachman has quit IRC02:09
*** yamahata has quit IRC02:09
*** tinwood has quit IRC02:10
*** tinwood has joined #openstack-nova02:11
*** shaohe_feng has quit IRC02:13
*** shaohe_feng has joined #openstack-nova02:14
*** gongysh has joined #openstack-nova02:17
*** hoonetorg has quit IRC02:19
*** shaohe_feng has quit IRC02:23
*** shaohe_feng has joined #openstack-nova02:28
*** shaohe_feng has quit IRC02:33
*** shaohe_feng has joined #openstack-nova02:34
openstackgerritMerged openstack/nova master: Add nova-status upgrade check for request spec migrations  https://review.openstack.org/58181302:39
*** pooja_jadhav has quit IRC02:40
*** shaohe_feng has quit IRC02:43
*** shaohe_feng has joined #openstack-nova02:44
*** antosh has quit IRC02:45
*** tbachman has joined #openstack-nova02:48
*** tbachman has quit IRC02:53
*** shaohe_feng has quit IRC02:54
*** shaohe_feng has joined #openstack-nova02:55
*** wolverineav has joined #openstack-nova02:55
*** mriedem has quit IRC02:58
*** wolverineav has quit IRC03:04
*** shaohe_feng has quit IRC03:04
*** shaohe_feng has joined #openstack-nova03:06
*** gooduone has joined #openstack-nova03:07
*** s10 has quit IRC03:07
*** s10 has joined #openstack-nova03:07
*** s10 has quit IRC03:08
*** s10 has joined #openstack-nova03:08
*** s10 has quit IRC03:08
*** s10 has joined #openstack-nova03:09
*** s10 has quit IRC03:09
*** tbachman has joined #openstack-nova03:09
*** s10 has joined #openstack-nova03:09
*** s10 has quit IRC03:10
*** s10 has joined #openstack-nova03:10
*** s10 has quit IRC03:11
*** wolverineav has joined #openstack-nova03:12
zzzeekdoes the nova placement database get built as part of nova-manage db sync or nova-manage api_db sync ?03:13
*** shaohe_feng has quit IRC03:14
zzzeekapi_db....damn03:14
*** shaohe_feng has joined #openstack-nova03:17
*** wolverineav has quit IRC03:17
*** shaohe_feng has quit IRC03:24
*** shaohe_feng has joined #openstack-nova03:27
*** shaohe_feng has quit IRC03:35
*** shaohe_feng has joined #openstack-nova03:36
*** wolverineav has joined #openstack-nova03:43
*** wolverineav has quit IRC03:44
*** shaohe_feng has quit IRC03:45
*** wolverineav has joined #openstack-nova03:46
*** shaohe_feng has joined #openstack-nova03:46
*** wolverineav has quit IRC03:50
openstackgerritMerged openstack/nova master: Fix create_all() to replace_all() in comments  https://review.openstack.org/58639603:54
*** shaohe_feng has quit IRC03:55
*** shaohe_feng has joined #openstack-nova03:56
openstackgerritMohammed Naser proposed openstack/nova master: Create request spec, build request and mappings in one transaction  https://review.openstack.org/58674204:04
mnaser^ tests failing but i dont know if i'm on the right track, i dont wanna dig in too deep and be in the wrong04:05
*** mschuppert has joined #openstack-nova04:05
*** shaohe_feng has quit IRC04:05
*** shaohe_feng has joined #openstack-nova04:06
*** tbachman has quit IRC04:09
*** shaohe_feng has quit IRC04:16
*** shaohe_feng has joined #openstack-nova04:19
*** shaohe_feng has quit IRC04:26
*** shaohe_feng has joined #openstack-nova04:26
*** shaohe_feng has quit IRC04:36
*** shaohe_feng has joined #openstack-nova04:37
openstackgerritMerged openstack/nova master: libvirt: Revert non-reporting DISK_GB if sharing  https://review.openstack.org/58661404:41
*** shaohe_feng has quit IRC04:46
*** shaohe_feng has joined #openstack-nova04:49
*** r-daneel has joined #openstack-nova04:50
*** shaohe_feng has quit IRC04:57
*** shaohe_feng has joined #openstack-nova04:57
*** links has joined #openstack-nova05:02
*** shaohe_feng has quit IRC05:07
*** shaohe_feng has joined #openstack-nova05:08
*** shaohe_feng has quit IRC05:17
*** shaohe_feng has joined #openstack-nova05:19
*** shaohe_feng has quit IRC05:27
*** shaohe_feng has joined #openstack-nova05:28
*** r-daneel has quit IRC05:31
*** shaohe_feng has quit IRC05:38
*** shaohe_feng has joined #openstack-nova05:38
*** shaohe_feng has quit IRC05:48
*** shaohe_feng has joined #openstack-nova05:49
*** shaohe_feng has quit IRC05:58
*** shaohe_feng has joined #openstack-nova05:59
*** itlinu___ has joined #openstack-nova06:08
*** shaohe_feng has quit IRC06:08
*** shaohe_feng has joined #openstack-nova06:10
*** itlinu___ has quit IRC06:13
*** shaohe_feng has quit IRC06:19
*** shaohe_feng has joined #openstack-nova06:21
*** brault has joined #openstack-nova06:28
*** shaohe_feng has quit IRC06:29
*** shaohe_feng has joined #openstack-nova06:31
*** brault has quit IRC06:33
*** ccamacho1 has quit IRC06:35
*** shaohe_feng has quit IRC06:39
*** shaohe_feng has joined #openstack-nova06:40
*** lbragstad has quit IRC06:48
*** brault has joined #openstack-nova06:49
*** shaohe_feng has quit IRC06:49
*** brault has quit IRC06:53
*** shaohe_feng has joined #openstack-nova06:54
*** shaohe_feng has quit IRC07:00
*** shaohe_feng has joined #openstack-nova07:04
*** shaohe_feng has quit IRC07:10
*** shaohe_feng has joined #openstack-nova07:12
*** gooduone has quit IRC07:18
*** shaohe_feng has quit IRC07:20
*** shaohe_feng has joined #openstack-nova07:21
*** mgoddard has joined #openstack-nova07:30
*** shaohe_feng has quit IRC07:30
*** shaohe_feng has joined #openstack-nova07:32
*** shaohe_feng has quit IRC07:41
*** shaohe_feng has joined #openstack-nova07:42
*** shaohe_feng has quit IRC07:51
*** shaohe_feng has joined #openstack-nova07:52
*** liuyulong_ has joined #openstack-nova07:53
*** liuyulong__ has quit IRC07:53
*** r-daneel has joined #openstack-nova07:53
*** r-daneel has quit IRC07:57
*** r-daneel has joined #openstack-nova07:59
*** shaohe_feng has quit IRC08:01
*** shaohe_feng has joined #openstack-nova08:02
*** wolverineav has joined #openstack-nova08:02
*** liuyulong_ has quit IRC08:04
*** wolverineav has quit IRC08:04
*** liuyulong_ has joined #openstack-nova08:04
*** wolverineav has joined #openstack-nova08:05
*** wolverineav has quit IRC08:05
*** shaohe_feng has quit IRC08:11
*** shaohe_feng has joined #openstack-nova08:12
*** s10 has joined #openstack-nova08:15
*** shaohe_feng has quit IRC08:22
*** shaohe_feng has joined #openstack-nova08:22
*** shaohe_feng has quit IRC08:32
*** shaohe_feng has joined #openstack-nova08:33
*** shaohe_feng has quit IRC08:42
*** shaohe_feng has joined #openstack-nova08:43
*** hoonetorg has joined #openstack-nova08:47
*** shaohe_feng has quit IRC08:52
*** shaohe_feng has joined #openstack-nova08:53
*** shaohe_feng has quit IRC09:03
*** shaohe_feng has joined #openstack-nova09:03
*** shaohe_feng has quit IRC09:13
*** shaohe_feng has joined #openstack-nova09:14
*** wolverineav has joined #openstack-nova09:14
*** wolverineav has quit IRC09:16
*** sapd has quit IRC09:17
*** sapd has joined #openstack-nova09:19
*** s10 has quit IRC09:22
*** shaohe_feng has quit IRC09:23
*** mgoddard has quit IRC09:25
*** shaohe_feng has joined #openstack-nova09:25
*** shaohe_feng has quit IRC09:33
*** shaohe_feng has joined #openstack-nova09:35
*** takedakn has joined #openstack-nova09:43
*** shaohe_feng has quit IRC09:44
*** shaohe_feng has joined #openstack-nova09:44
*** r-daneel has quit IRC09:46
*** gongysh has quit IRC09:46
*** liuyulong__ has joined #openstack-nova09:48
*** liuyulong_ has quit IRC09:48
*** shaohe_feng has quit IRC09:54
*** shaohe_feng has joined #openstack-nova09:55
*** avolkov has joined #openstack-nova09:57
*** sambetts_ has quit IRC09:59
*** sambetts_ has joined #openstack-nova10:00
*** shaohe_feng has quit IRC10:04
*** shaohe_feng has joined #openstack-nova10:08
*** shaohe_feng has quit IRC10:14
*** shaohe_feng has joined #openstack-nova10:18
*** shaohe_feng has quit IRC10:25
*** shaohe_feng has joined #openstack-nova10:28
*** tbachman has joined #openstack-nova10:31
*** gongysh has joined #openstack-nova10:33
*** shaohe_feng has quit IRC10:35
*** shaohe_feng has joined #openstack-nova10:36
*** gongysh has quit IRC10:38
openstackgerritChris Dent proposed openstack/nova master: [placement] Retry allocation writes server side  https://review.openstack.org/58604810:39
*** shaohe_feng has quit IRC10:45
*** shaohe_feng has joined #openstack-nova10:46
*** shaohe_feng has quit IRC10:55
*** shaohe_feng has joined #openstack-nova10:56
*** tbachman has quit IRC11:01
*** tbachman has joined #openstack-nova11:03
*** shaohe_feng has quit IRC11:06
*** shaohe_feng has joined #openstack-nova11:07
*** takedakn has quit IRC11:14
*** shaohe_feng has quit IRC11:16
*** tbachman has quit IRC11:16
*** s10 has joined #openstack-nova11:16
*** shaohe_feng has joined #openstack-nova11:20
*** shaohe_feng has quit IRC11:26
*** brault has joined #openstack-nova11:29
*** shaohe_feng has joined #openstack-nova11:29
*** brault has quit IRC11:33
*** shaohe_feng has quit IRC11:36
*** shaohe_feng has joined #openstack-nova11:37
*** linkmark has joined #openstack-nova11:42
*** shaohe_feng has quit IRC11:47
*** hoonetorg has quit IRC11:49
*** hoonetorg has joined #openstack-nova11:54
*** shaohe_feng has joined #openstack-nova11:56
*** shaohe_feng has quit IRC11:57
*** shaohe_feng has joined #openstack-nova11:58
openstackgerritThomas Goirand proposed openstack/nova master: Remove "async" as variable name  https://review.openstack.org/58678211:59
*** david-lyle has quit IRC11:59
*** antosh has joined #openstack-nova12:04
*** shaohe_feng has quit IRC12:07
*** shaohe_feng has joined #openstack-nova12:08
openstackgerritThomas Goirand proposed openstack/nova master: Remove "async" as variable name  https://review.openstack.org/58678212:10
*** med_ has joined #openstack-nova12:10
*** med_ has quit IRC12:10
*** med_ has joined #openstack-nova12:10
*** shaohe_feng has quit IRC12:17
*** shaohe_feng has joined #openstack-nova12:18
*** hoonetorg has quit IRC12:22
*** liuyulong__ has quit IRC12:24
*** liuyulong__ has joined #openstack-nova12:24
*** shaohe_feng has quit IRC12:28
*** shaohe_feng has joined #openstack-nova12:29
*** liuyulong__ has quit IRC12:32
*** hoonetorg has joined #openstack-nova12:33
*** shaohe_feng has quit IRC12:38
*** shaohe_feng has joined #openstack-nova12:39
*** shaohe_feng has quit IRC12:48
openstackgerritMerged openstack/nova master: libvirt: Start populating NUMACell.network_metadata field  https://review.openstack.org/56444112:50
openstackgerritMerged openstack/nova master: Add functional tests for numa-aware-vswitches  https://review.openstack.org/58328812:50
openstackgerritMerged openstack/nova master: Consider network NUMA affinity for move operations  https://review.openstack.org/58533912:50
*** shaohe_feng has joined #openstack-nova12:51
*** shaohe_feng has quit IRC12:58
*** shaohe_feng has joined #openstack-nova13:01
*** shaohe_feng has quit IRC13:09
*** shaohe_feng has joined #openstack-nova13:10
*** vladikr has quit IRC13:13
*** lyan has joined #openstack-nova13:17
*** lyan is now known as Guest226713:18
*** shaohe_feng has quit IRC13:19
*** shaohe_feng has joined #openstack-nova13:20
*** vladikr has joined #openstack-nova13:26
*** shaohe_feng has quit IRC13:29
*** shaohe_feng has joined #openstack-nova13:30
*** shaohe_feng has quit IRC13:39
*** shaohe_feng has joined #openstack-nova13:40
*** vladikr has quit IRC13:41
*** shaohe_feng has quit IRC13:50
*** shaohe_feng has joined #openstack-nova13:50
*** antosh has quit IRC13:50
*** vladikr has joined #openstack-nova13:54
*** shaohe_feng has quit IRC14:00
*** shaohe_feng has joined #openstack-nova14:01
*** mvenesio has joined #openstack-nova14:10
*** shaohe_feng has quit IRC14:10
*** shaohe_feng has joined #openstack-nova14:11
*** shaohe_feng has quit IRC14:21
*** shaohe_feng has joined #openstack-nova14:22
*** shaohe_feng has quit IRC14:31
*** shaohe_feng has joined #openstack-nova14:33
*** shaohe_feng has quit IRC14:41
*** shaohe_feng has joined #openstack-nova14:44
*** links has quit IRC14:49
*** shaohe_feng has quit IRC14:51
*** imacdonn has quit IRC14:52
*** imacdonn has joined #openstack-nova14:52
*** shaohe_feng has joined #openstack-nova14:53
openstackgerritxulei proposed openstack/nova stable/queens: Disable limits if force_hosts or force_nodes is set  https://review.openstack.org/58461614:55
*** shaohe_feng has quit IRC15:02
*** shaohe_feng has joined #openstack-nova15:02
*** shaohe_feng has quit IRC15:12
*** shaohe_feng has joined #openstack-nova15:13
openstackgerritMerged openstack/nova stable/queens: Make host_aggregate_map dictionary case-insensitive  https://review.openstack.org/58533415:18
*** shaohe_feng has quit IRC15:22
*** shaohe_feng has joined #openstack-nova15:26
*** itlinux has quit IRC15:29
*** shaohe_feng has quit IRC15:32
*** shaohe_feng has joined #openstack-nova15:34
*** Guest74389 has joined #openstack-nova15:35
Guest74389Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/15:35
*** Guest74389 has quit IRC15:35
*** shaohe_feng has quit IRC15:43
*** shaohe_feng has joined #openstack-nova15:46
*** shaohe_feng has quit IRC15:53
*** shaohe_feng has joined #openstack-nova15:53
openstackgerritMohammed Naser proposed openstack/nova master: Create request spec, build request and mappings in one transaction  https://review.openstack.org/58674215:54
openstackgerritMohammed Naser proposed openstack/nova master: Check for build request even if instance mapping doesn't exist  https://review.openstack.org/58682415:54
*** shaohe_feng has quit IRC16:03
*** fried_rice has quit IRC16:08
*** fried_rice has joined #openstack-nova16:08
*** shaohe_feng has joined #openstack-nova16:08
*** shaohe_feng has quit IRC16:13
*** shaohe_feng has joined #openstack-nova16:14
*** shaohe_feng has quit IRC16:23
*** shaohe_feng has joined #openstack-nova16:27
*** shaohe_feng has quit IRC16:33
*** shaohe_feng has joined #openstack-nova16:35
*** shaohe_feng has quit IRC16:43
*** shaohe_feng has joined #openstack-nova16:44
openstackgerritMerged openstack/nova master: Fix accumulated nits from port binding for live migration series  https://review.openstack.org/58399416:51
*** shaohe_feng has quit IRC16:53
*** shaohe_feng has joined #openstack-nova16:54
*** s10 has quit IRC17:01
*** s10 has joined #openstack-nova17:02
*** shaohe_feng has quit IRC17:03
*** shaohe_feng has joined #openstack-nova17:04
*** shaohe_feng has quit IRC17:13
*** shaohe_feng has joined #openstack-nova17:14
*** shaohe_feng has quit IRC17:23
*** shaohe_feng has joined #openstack-nova17:29
*** med_ has quit IRC17:32
*** shaohe_feng has quit IRC17:33
*** shaohe_feng has joined #openstack-nova17:34
*** shaohe_feng has quit IRC17:43
*** shaohe_feng has joined #openstack-nova17:46
*** medberry has joined #openstack-nova17:49
*** shaohe_feng has quit IRC17:53
*** brault has joined #openstack-nova17:56
*** shaohe_feng has joined #openstack-nova17:57
*** brault has quit IRC18:00
*** shaohe_feng has quit IRC18:03
*** zzzeek has quit IRC18:04
*** shaohe_feng has joined #openstack-nova18:05
*** shaohe_feng has quit IRC18:13
*** shaohe_feng has joined #openstack-nova18:14
*** medberry has quit IRC18:19
*** shaohe_feng has quit IRC18:23
*** zzzeek has joined #openstack-nova18:25
*** shaohe_feng has joined #openstack-nova18:25
*** hoonetorg has quit IRC18:27
*** mvenesio has quit IRC18:30
*** shaohe_feng has quit IRC18:33
*** shaohe_feng has joined #openstack-nova18:35
*** yamahata has joined #openstack-nova18:38
*** mvenesio has joined #openstack-nova18:41
*** shaohe_feng has quit IRC18:43
*** shaohe_feng has joined #openstack-nova18:44
*** Guest2267 has quit IRC18:45
*** vladikr has quit IRC18:52
*** shaohe_feng has quit IRC18:53
*** shaohe_feng has joined #openstack-nova18:55
*** shaohe_feng has quit IRC19:03
*** shaohe_feng has joined #openstack-nova19:06
*** medberry has joined #openstack-nova19:07
*** mvenesio has quit IRC19:12
*** shaohe_feng has quit IRC19:13
*** medberry has quit IRC19:13
*** shaohe_feng has joined #openstack-nova19:14
*** itlinux has joined #openstack-nova19:16
*** armaan has joined #openstack-nova19:20
*** shaohe_feng has quit IRC19:23
*** shaohe_feng has joined #openstack-nova19:26
*** shaohe_feng has quit IRC19:33
*** shaohe_feng has joined #openstack-nova19:36
*** shaohe_feng has quit IRC19:43
*** shaohe_feng has joined #openstack-nova19:44
openstackgerritVieri proposed openstack/osc-placement master: Add image link in README.rst  https://review.openstack.org/58683919:46
*** shaohe_feng has quit IRC19:53
*** shaohe_feng has joined #openstack-nova19:54
*** shaohe_feng has quit IRC20:03
*** shaohe_feng has joined #openstack-nova20:06
*** itlinux has quit IRC20:07
*** brault has joined #openstack-nova20:08
*** itlinux has joined #openstack-nova20:09
*** brault has quit IRC20:12
*** shaohe_feng has quit IRC20:13
*** shaohe_feng has joined #openstack-nova20:14
*** shaohe_feng has quit IRC20:23
*** shaohe_feng has joined #openstack-nova20:24
*** avolkov has quit IRC20:26
*** shaohe_feng has quit IRC20:33
*** shaohe_feng has joined #openstack-nova20:35
*** shaohe_feng has quit IRC20:43
*** shaohe_feng has joined #openstack-nova20:44
*** shaohe_feng has quit IRC20:53
*** shaohe_feng has joined #openstack-nova20:54
*** sean-k-mooney has quit IRC20:58
*** jamesdenton has quit IRC21:02
*** shaohe_feng has quit IRC21:03
*** shaohe_feng has joined #openstack-nova21:04
*** shaohe_feng has quit IRC21:13
*** shaohe_feng has joined #openstack-nova21:14
*** shaohe_feng has quit IRC21:23
*** shaohe_feng has joined #openstack-nova21:24
*** s10 has quit IRC21:28
*** armaan has quit IRC21:32
*** armaan has joined #openstack-nova21:32
*** shaohe_feng has quit IRC21:33
*** shaohe_feng has joined #openstack-nova21:34
*** ejat has quit IRC21:36
*** armaan has quit IRC21:37
*** itlinux__ has quit IRC21:37
*** shaohe_feng has quit IRC21:43
*** shaohe_feng has joined #openstack-nova21:44
*** shaohe_feng has quit IRC21:53
*** shaohe_feng has joined #openstack-nova21:54
*** rtjure has quit IRC21:56
*** shaohe_feng has quit IRC22:03
*** shaohe_feng has joined #openstack-nova22:05
*** shaohe_feng has quit IRC22:13
*** shaohe_feng has joined #openstack-nova22:15
*** shaohe_feng has quit IRC22:23
*** shaohe_feng has joined #openstack-nova22:23
*** tbachman has joined #openstack-nova22:32
*** shaohe_feng has quit IRC22:33
*** shaohe_feng has joined #openstack-nova22:33
*** shaohe_feng has quit IRC22:43
*** shaohe_feng has joined #openstack-nova22:46
*** tbachman has quit IRC22:52
*** shaohe_feng has quit IRC22:54
*** shaohe_feng has joined #openstack-nova22:54
*** shaohe_feng has quit IRC23:04
*** mschuppert has quit IRC23:04
*** shaohe_feng has joined #openstack-nova23:06
*** shaohe_feng has quit IRC23:14
*** shaohe_feng has joined #openstack-nova23:15
*** shaohe_feng has quit IRC23:24
*** shaohe_feng has joined #openstack-nova23:26
*** shaohe_feng has quit IRC23:35
*** shaohe_feng has joined #openstack-nova23:35
*** shaohe_feng has quit IRC23:45
*** shaohe_feng has joined #openstack-nova23:46
*** brault has joined #openstack-nova23:49
*** brault has quit IRC23:53
*** shaohe_feng has quit IRC23:55
*** shaohe_feng has joined #openstack-nova23:56

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