Tuesday, 2012-08-28

*** daddyjoseph97 has quit IRC00:02
*** spiffxp has joined #openstack-dev00:02
*** ncode has quit IRC00:07
*** milner has joined #openstack-dev00:08
*** markmcclain has quit IRC00:12
*** markmcclain has joined #openstack-dev00:16
*** steveb_ has quit IRC00:19
*** Mandell has quit IRC00:20
*** steveb_ has joined #openstack-dev00:21
*** winston-d has joined #openstack-dev00:23
*** reed has quit IRC00:24
*** andrewbogott has quit IRC00:25
openstackgerritA change was merged to openstack/nova: Add ops to aggregate_instance_extra_specs filter.  https://review.openstack.org/1144900:27
*** bitblt has quit IRC00:38
*** milner has quit IRC00:38
*** titankiller3 has quit IRC00:38
*** samkottler is now known as samkottler|afk00:39
*** ncode has joined #openstack-dev00:43
*** jtran has quit IRC00:47
*** jtran has joined #openstack-dev00:50
*** novas0x2a|laptop has quit IRC00:53
*** milner has joined #openstack-dev00:55
*** colinmcnamara has joined #openstack-dev00:55
*** apevec has quit IRC00:57
*** Gordonz has quit IRC00:59
*** rods1 has quit IRC01:01
*** colinmcnamara has left #openstack-dev01:06
*** anniec has quit IRC01:07
*** epim has quit IRC01:08
*** jdurgin has quit IRC01:13
*** markmcclain has quit IRC01:14
*** nati_ueno has quit IRC01:25
*** asalkeld has quit IRC01:27
arosen1hey garyk you around?01:27
*** reed has joined #openstack-dev01:29
*** reed has quit IRC01:30
*** johnpur has quit IRC01:31
*** jtran has quit IRC01:36
arosen1hi rkukura you around?01:36
*** xchu has joined #openstack-dev01:44
*** asalkeld has joined #openstack-dev01:45
*** adjohn has quit IRC01:47
openstackgerritA change was merged to openstack/nova: Allow connecting to a ssl-based glance  https://review.openstack.org/1179701:53
*** samosx123 has quit IRC01:54
*** dwalleck has joined #openstack-dev01:58
*** nati_ueno has joined #openstack-dev02:06
*** nati_ueno has quit IRC02:09
*** nati_ueno has joined #openstack-dev02:11
*** waa has quit IRC02:13
*** jkff has quit IRC02:13
*** zhuadl has quit IRC02:21
openstackgerritA change was merged to openstack/nova: Fixes backwards compatible rpc schedule_run  https://review.openstack.org/1201302:26
*** nati_ueno has quit IRC02:27
*** nati_ueno has joined #openstack-dev02:28
*** epim_ has joined #openstack-dev02:29
*** sacharya has quit IRC02:29
*** johnpur has joined #openstack-dev02:29
*** ChanServ sets mode: +v johnpur02:29
*** johnpur has left #openstack-dev02:29
*** nati_ueno has quit IRC02:40
*** nati_ueno has joined #openstack-dev02:41
*** Mandell has joined #openstack-dev02:44
*** sacharya has joined #openstack-dev02:48
*** maurosr has quit IRC02:51
*** ncode has quit IRC02:52
*** koolhead17 has joined #openstack-dev02:52
*** nati_ueno has quit IRC02:58
*** Gordonz has joined #openstack-dev03:00
*** adalbas has quit IRC03:01
*** mjfork has quit IRC03:03
*** spiffxp has quit IRC03:04
*** Gordonz has quit IRC03:05
*** PotHix has quit IRC03:08
*** spiffxp has joined #openstack-dev03:19
*** waa has joined #openstack-dev03:22
*** jkff has joined #openstack-dev03:22
rkukuraarosen1: Are you still looking for me?03:29
arosen1hi rkukura I'm looking at your patches. I actually fell a few patches behind related to how your second phase of extensions the ovs plugin so i'm working though that now as well.03:32
arosen1rkukura: in order to configure this:  --provider:physical_network <physical-network>03:33
arosen1should I put eth0 in br-int or make my own bridge for that?03:33
rkukuraWith openvswitch, each physical network gets its own bridge. This bridge handles all the VLANs for that network, and non-Quantum interfaces can be part of those bridges too.03:34
rkukuraSo if you have a physical_network called physnet1, you need a mapping on each compute node that looks like physnet1:br-eth1.03:35
rkukuraAnd br-eth1 should be adminstratively created with the device attached as a port.03:36
rkukuraThe node can also have an address on br-eth1 if it needs.03:36
rkukuraOr on any VLANs on br-eth1.03:37
rkukuraIs that making any sense, or am I incoherent?03:38
arosen1why br-eth1 and physnet1?03:39
rkukuraI'm just using "physnet1" as an example of a physical network name.03:39
*** lloydde has joined #openstack-dev03:39
arosen1ah so physnet1 is like an interface?03:39
* arosen1 is an interface03:40
rkukuraThink of it as just a label for the network cable.03:40
rkukuraIt might be a bonded interface or a single interface or whatever.03:40
rkukuraThis name is the name of the network, not of the interface device. The device name can vary from node to node.03:41
arosen1gotcha03:42
arosen1So say i have a hyprovisor with a ton of vlan interfaces on it: eth0.1 eth0.203:43
arosen1so now if i want to use the ovs plugin to boot vms attached to those specific networks I need to create a bridge and add those two interfaces to it?03:43
*** sacharya has quit IRC03:44
arosen1eth0.1 is attached to a  trunk port on a switch where traffic comes in with vlan tag1.03:44
rkukuraNo, you just need an OVS bridge with eth0 as a port.03:44
arosen1gotcha.03:45
arosen1so I have eth0; I create br-eth0 and attach eth0 to it.03:45
arosen1now i need to edit /etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini03:45
rkukuraAnd "ip link set eth0 up" and "ip link set br-eth0 up" may be needed03:45
rkukurayes03:47
rkukurain general, you'll need to edit bridge_mappings on the compute nodes, and network_vlan_ranges on the controller node.03:48
*** shang has joined #openstack-dev03:48
arosen1cool , i'm looking at that now.03:48
rkukurayou'll see that there is a default physical_network named "default"03:49
arosen1bridge_mappings = default:br-eth0 (\n)03:49
rkukurayes, that goes on the compute node, saying that your physical_network named "default" is attached to br-eth0.03:50
arosen1what about bridge_mapping vs physical_interface_mappings  ?03:50
arosen1it seems those are the same?03:50
arosen1physical_interface_mappings = <physical_network>:<physical_interface>03:50
rkukuraphysical_interface_mappings are for the linuxbridge plugin, not openvswitch.03:50
arosen1then i need: network_vlan_ranges = default:1:1003:51
arosen1say the port has vlans 1-10 on it.03:51
rkukurathat config item is doing two things: First, its saying that there exists a physical_network named "default". Second its saying VLAN ids 1-10 are available for allocation to tenant networks.03:52
arosen1and the default maps back up to this line:  bridge_mappings = default:br-eth003:53
rkukuraright03:53
rkukuraThe network_vlan_ranges and tunnel_id_ranges are used in the quantum server only03:54
arosen1when I create a network should it check the bounds on the vlan_ids?03:55
arosen1 quantum net-create --tenant_id 4cb79772db7b45c2a29117ce892e504a net2 --provider:network_type vlan --provider:phyiscal_network default --provider:vlan_id 11103:55
rkukuraIt should fail if that vlan_id has already been allocated to a quantum network.03:55
arosen1that seemed to execute fine even though I only have 1:1003:55
rkukuraBut its fine for that vlan_id to be inside or outside the range03:55
arosen1why is it fine for it to be outside that range?03:56
*** adjohn has joined #openstack-dev03:56
rkukurathe range is the pool from which normal non-provider tenant networks are dynamically allocated03:56
arosen1ah k03:56
rkukuraso you might have a database server on vlan_id 111.03:56
rkukuraI think I need to put this on a wiki page 1st thing in the morning03:57
arosen1Cool, i think i see how this works. So if i create a flat network does it assume that eth0 can also operate as untagged?03:57
rkukuracorrect03:57
arosen1assuming i use default which is bridge_mappings = default:br-eth003:57
rkukuraright03:58
arosen1Awesome, thanks rkukura this helped me get a head start figuring this out :)03:58
rkukuradefinitely needs some documentation03:58
arosen1yea a wiki page would be nice. I spent a while reading though the comments on gerrit  but I didn't get very far :)03:58
rkukurahopefully devstack gets things going for most people03:58
rkukuraThe key things to set with devstack are OVS_TUNNEL_MODE, which determines whether non-provider tenant networks are tunnels or VLANs, and OVS_DEFAULT_BRIDGE, which specifies the bridge name to use for the "default" network.04:00
rkukuraI need to get some sleep - its midnight now, and I worked til almost 3 AM last night04:01
rkukuraany quick questions?04:01
arosen1so your newest patch allows you to have multiple interfaces?04:01
arosen1so like br-eth0 br-eth1?04:01
* arosen1 multiple networks04:01
rkukuraas many as you want04:01
arosen1does it do any loop prevention?04:02
arosen1I guess I'll look to see if you can even create a loop so i guess nvm.04:02
arosen1Thanks rkukura for your help!04:02
arosen1night!04:02
rkukuraYou could probably cross-wire networks to create a loop04:02
rkukuraI'll look for some review comments (and/or email) in the morning!04:03
arosen1sounds good04:03
rkukurahave fun04:03
rkukurathanks04:03
*** jkff has quit IRC04:15
*** jkff has joined #openstack-dev04:15
*** ijw1 has joined #openstack-dev04:18
*** ijw has quit IRC04:18
*** littleidea has quit IRC04:19
*** koolhead17 has quit IRC04:20
*** mestery has quit IRC04:20
*** mestery has joined #openstack-dev04:22
*** k4n0 has joined #openstack-dev04:22
*** littleidea has joined #openstack-dev04:22
*** jkff has quit IRC04:23
*** harlowja has quit IRC04:32
*** vanchester has joined #openstack-dev04:33
*** garyk has quit IRC04:36
*** jkff has joined #openstack-dev04:36
*** arosen1 has quit IRC04:37
*** arosen1 has joined #openstack-dev04:43
*** tgall_foo has quit IRC04:45
*** Ruetobas has quit IRC04:48
*** Ruetobas has joined #openstack-dev04:53
*** shang has quit IRC05:00
*** colinmcnamara has joined #openstack-dev05:02
*** jkff has quit IRC05:03
*** zaitcev has quit IRC05:11
*** lloydde has quit IRC05:11
*** lloydde has joined #openstack-dev05:12
*** lloydde has quit IRC05:17
*** steveb_ has quit IRC05:17
*** Mandell has quit IRC05:18
*** jkff has joined #openstack-dev05:20
*** dwalleck_ has joined #openstack-dev05:22
*** dwalleck has quit IRC05:25
*** garyk has joined #openstack-dev05:30
*** dwalleck_ has quit IRC05:33
*** Mandell has joined #openstack-dev05:35
*** colinmcnamara has quit IRC05:36
*** markmc has joined #openstack-dev05:40
*** thovden has joined #openstack-dev05:46
*** nati_ueno has joined #openstack-dev05:47
*** colinmcnamara has joined #openstack-dev05:48
*** colinmcnamara has quit IRC05:52
*** pjh has joined #openstack-dev05:58
*** hattwick has quit IRC06:01
openstackgerritA change was merged to openstack/python-swiftclient: Change '_' to '-' in options  https://review.openstack.org/1189706:01
openstackgerritA change was merged to openstack/python-swiftclient: Add nosehtmloutput as a test dependency.  https://review.openstack.org/1176906:05
*** spiffxp has quit IRC06:05
*** thinrhino has joined #openstack-dev06:23
*** jkff has quit IRC06:24
*** mindpixel has joined #openstack-dev06:30
*** arosen1 has joined #openstack-dev06:31
arosen1hi garyk  you around?06:31
*** GheRivero has joined #openstack-dev06:34
garykarosen1: yup. how things?06:35
GheRiveromorning people06:35
arosen1good, you? I just had a question for you but I figured it out :)06:35
garykarosen1: :). i am still battling on getting the provider network configuration sorted06:36
*** rmk has quit IRC06:36
arosen1rkukura:  helped me figure a lot of how it works earilier.06:37
*** cloudfly has quit IRC06:37
arosen1I'm testing it out right now.06:37
garykarosen1: great.06:37
arosen1I got a pretty crazy setup going on :)06:37
arosen1I'm using KVM and passing in extra interfaces to the VM in order to pass vms on06:37
garykarosen1: i am trying to test the flat networks and am trying to get the ovs plugin config file sorted. the mapping interfaces is a bit confusing06:37
arosen1this way i can test out bob's latest patch.06:37
garykcan you send me your ovs.ini file?06:38
arosen1I'm working on the vlan part first but I'm coming back to flat after that.06:39
arosen1sure I'll pm it to you.06:39
openstackgerritA change was merged to openstack/glance: Remove autodoc and useless index docs  https://review.openstack.org/1183506:39
*** rmk has joined #openstack-dev06:39
arosen1garyk: you only actually need these two lines to test with a single network:06:40
arosen1bridge_mappings = default:br-eth006:40
garykarosen1:  thanks06:40
arosen1i guess one line :)06:41
arosen1 network_vlan_ranges = default:<min>:<max>06:42
arosen1if you want to limit it06:42
arosen1then ovs-vsctl add-br br-eth0; ovs-vsctl add-port br-eth0 eth0;06:42
garykat the moment it is all i need06:42
arosen1and move the ip06:42
garykarosen1: thanks. for some reason I am still unable to create a flat network. i'll try and debug06:45
arosen1hrm are you getting an errror from quantumcl i about unrecongized argument?06:47
arosen1ah nvm i had a typo06:47
arosen1garyk: what command are you running? I think I was able to create a flat network.06:49
arosen1arosen@controller:~/devstack$ quantum net-create --tenant_id fb8f2a31b6e4441c8554a3cee64d9c41 net3 --provider:network_type flat --provider:physical_network default06:49
garykno, i am getting "Invalid input for operation: unknown provider:physical_network br_eth0"06:49
arosen1hehe that was the same thing i ran into06:50
*** Gordonz has joined #openstack-dev06:50
arosen1bridge_mappings = default:br-eth006:50
arosen1you need to use default06:50
arosen1or w/e you call it.06:50
garykok.06:50
garykI now get - gkotton@gkotton-ubuntu12:~/devstack$ quantum net-create --tenant_id 9025efad7f314592bf7c9360598d3c6d net1 --provider:network_type  --provider:physical_network default06:51
garykInvalid input for provider:network_type. Reason: True is not in ['flat', 'vlan'].06:51
garykoop - forgot the flat06:51
garykgkotton@gkotton-ubuntu12:~/devstack$ quantum net-create --tenant_id 9025efad7f314592bf7c9360598d3c6d net1 --provider:network_type  --provider:physical_network default06:51
garykInvalid input for provider:network_type. Reason: True is not in ['flat', 'vlan'].06:51
*** Gordonz has quit IRC06:54
*** thovden has quit IRC06:55
garykarosen1: odd thing is that with the linux bridge it behaved differently with the flat network06:56
arosen1what you pasted is missing the type06:56
arosen1 --provider:network_type [Type]06:57
garykarosen1: true - that also did not work :(06:57
arosen1can you paste it?06:57
garyki a few secs i am rebooting...06:58
garykgkotton@gkotton-ubuntu12:~/devstack$  quantum net-create --tenant_id 52ccaf6af4784d17bba05f86ef231bee net1 --provider:network_type flat --provider:physical_network default07:00
garykInvalid input for operation: unknown provider:physical_network default.07:00
garykarosen1: i seem to be sorted now (or at least devstack is up)07:03
arosen1hrm what did you change?07:04
arosen1I'm running into the same thing but i think it's because i'm trying to do it with multiple networks now.07:04
arosen1bridge_mappings = default:br-eth0, hostnet:br-eth207:04
arosen1though my syntax seems right since the plugin created port 4: phy-br-eth207:05
*** teamrot__ has quit IRC07:05
*** thinrhino has quit IRC07:06
*** vanchester has quit IRC07:07
*** adjohn has quit IRC07:07
*** EmilienM has joined #openstack-dev07:09
*** rbasak has joined #openstack-dev07:13
garykarosen1: at the moment i have one interface on my machine07:14
garykarosen1: in devstack i set OVS_DEFAULT_BRIDGE=br-eth007:14
arosen1no worries, i think i found my issue here :)07:15
*** erikzaadi has joined #openstack-dev07:16
arosen1white space :/07:16
garykarosen1: i have asked bob to try and document and provide some examples. this would make things a lot simpler. i am going to add an extra vnic to my test machines and hopefully i'll be able to check vlans.07:21
arosen1garyk: yea, i talked to bob a few hours back and he said he would document this07:21
garykcool07:22
*** dachary has joined #openstack-dev07:26
arosen1garyk:  did you figure out that ovs issue eariler?07:27
arosen1gah booting vms within a vm take forrreverr...07:30
arosen1or maybe it's stuck on Booting from ROM :/07:34
garykarosen1: i was using the wrong kernel. hopefully i have sorted this out07:34
arosen1garyk:  did flat networks work for you?07:36
garykarosen1: yes.07:37
garykarosen1: i plan to check vlans now07:37
arosen1hrm i was getting an exception in n-api but i think it was something unrelated.07:38
arosen1i'm restacking. My vms never booted :/07:38
arosen1so i couldn't check .07:38
*** zaneb has joined #openstack-dev07:38
*** k4n0 has left #openstack-dev07:41
garykarosen1: ok07:41
*** nati_ueno has quit IRC07:44
*** nati_ueno has joined #openstack-dev07:44
arosen1hey garyk are you getting this error in n-cpu? http://codepad.org/oby1Knbb07:44
garykarosen1: no. every now and then i run into problems with keystone. i just delete the /etc directories of nova, keystone and quantum and then install again. :(07:47
arosen1it only seems to happen with flat07:47
arosen1yea weird!07:48
arosen1so i booted two vms on a flat network they never came up07:48
arosen1booted one on a gre booted right up to the login07:48
arosen1boot the flat network type got those errors in n-cpui07:48
arosen1no error in gre07:48
garykarosen1: this is odd. maybe the n-cpu is unable to communicate with keystone due to networking issues. are they on the same host?07:49
arosen1yes same host07:49
arosen1what about in your setup?07:50
garykarosen1: ditto - all of the services are running on the same host. in the fedora setup that i was having problems with i plan on running serviecs on different hosts. hopefully this will be up soon07:50
*** thinrhino has joined #openstack-dev07:51
*** zhuadl has joined #openstack-dev07:51
*** markmc has quit IRC07:52
*** littleidea has quit IRC07:56
*** zhuadl has quit IRC07:56
*** zing has joined #openstack-dev07:58
*** zhuadl has joined #openstack-dev08:05
*** reidrac has joined #openstack-dev08:09
*** m4xmr has joined #openstack-dev08:09
*** Ryan_Lane has quit IRC08:11
*** zhuadl has quit IRC08:14
*** almaisan-away is now known as al-maisan08:15
*** zhuadl has joined #openstack-dev08:15
*** zhuadl has quit IRC08:18
*** zhuadl has joined #openstack-dev08:18
*** darraghb has joined #openstack-dev08:22
*** ijw1 has quit IRC08:22
*** ijw has joined #openstack-dev08:22
*** sandywalsh_ has joined #openstack-dev08:23
*** vanchester has joined #openstack-dev08:23
*** sandywalsh has quit IRC08:24
*** apevec has joined #openstack-dev08:29
*** apevec has joined #openstack-dev08:29
*** rmk has quit IRC08:32
*** nati_uen_ has joined #openstack-dev08:33
*** derekh has joined #openstack-dev08:35
*** rmk has joined #openstack-dev08:35
*** nati_ueno has quit IRC08:35
*** cloudfly has joined #openstack-dev08:37
*** hattwick has joined #openstack-dev08:42
openstackgerritA change was merged to openstack/quantum: clear db._ENGINE for each plugin init in Metaplugin  https://review.openstack.org/1147408:44
*** vanchester1 has joined #openstack-dev08:46
*** pixelbeat has joined #openstack-dev08:46
*** vanchester has quit IRC08:48
*** zhuadl_ has joined #openstack-dev08:54
*** zhuadl has quit IRC08:55
*** zhuadl_ is now known as zhuadl08:55
*** winston-d has quit IRC08:57
*** nati_ueno has joined #openstack-dev08:57
*** vanchester1 has quit IRC08:58
*** gongysh has joined #openstack-dev08:59
*** vanchester has joined #openstack-dev09:01
*** nati_uen_ has quit IRC09:01
*** mindpixel has quit IRC09:08
*** sandywalsh has joined #openstack-dev09:10
*** torgomatic_ has joined #openstack-dev09:12
*** zhuadl_ has joined #openstack-dev09:12
*** nati_ueno has quit IRC09:14
*** nati_ueno has joined #openstack-dev09:14
*** gongysh has quit IRC09:16
*** zhuadl has quit IRC09:16
*** sandywalsh_ has quit IRC09:16
*** garyk has quit IRC09:16
*** waa has quit IRC09:16
*** milner has quit IRC09:16
*** timello_ has quit IRC09:16
*** torgomatic has quit IRC09:16
*** martines has quit IRC09:16
*** torgomatic_ is now known as torgomatic09:16
*** zhuadl_ is now known as zhuadl09:17
*** milner has joined #openstack-dev09:17
*** timello_ has joined #openstack-dev09:21
*** gongysh has joined #openstack-dev09:23
*** garyk has joined #openstack-dev09:23
*** thovden has joined #openstack-dev09:23
*** martines has joined #openstack-dev09:24
*** waa has joined #openstack-dev09:37
*** rafaduran has joined #openstack-dev09:41
*** thovden has quit IRC09:46
*** kyriakos has joined #openstack-dev09:53
*** Dharmit has joined #openstack-dev09:58
*** nati_ueno has quit IRC10:04
*** zhuadl has quit IRC10:04
*** xchu has quit IRC10:05
*** mjfork has joined #openstack-dev10:09
*** shang has joined #openstack-dev10:11
*** m4xmr_ has joined #openstack-dev10:30
*** m4xmr has quit IRC10:34
*** m4xmr_ is now known as m4xmr10:34
*** zaneb has quit IRC10:38
*** zaneb has joined #openstack-dev10:38
*** mrunge has joined #openstack-dev10:39
*** Gordonz has joined #openstack-dev10:50
*** Gordonz has quit IRC10:55
*** rods1 has joined #openstack-dev11:02
*** rkukura has left #openstack-dev11:11
*** adalbas has joined #openstack-dev11:23
*** Dharmit has quit IRC11:26
*** cloudvirt has joined #openstack-dev11:31
*** shang has quit IRC11:38
*** cloudvirt has quit IRC11:41
*** apevec has quit IRC11:41
*** maurosr has joined #openstack-dev11:44
*** lts has joined #openstack-dev11:59
*** mrunge has quit IRC12:04
*** dachary has quit IRC12:05
*** dachary has joined #openstack-dev12:14
*** mnewby has joined #openstack-dev12:17
*** markmc has joined #openstack-dev12:17
*** jrd-redhat has quit IRC12:20
*** sacharya has joined #openstack-dev12:22
*** samkottler|afk is now known as samkottler12:24
*** cloudvirt has joined #openstack-dev12:24
*** samkottler is now known as samkottler|call12:30
*** dolphm_ has joined #openstack-dev12:30
*** alaski has quit IRC12:31
*** m4xmr has quit IRC12:33
*** alaski has joined #openstack-dev12:34
*** m4xmr has joined #openstack-dev12:34
*** thinrhino has quit IRC12:41
*** samkottler|call is now known as samkottler12:43
*** erikzaadi has quit IRC12:46
*** rohitk has joined #openstack-dev12:53
*** GheRivero is now known as GheAway12:55
*** roge has joined #openstack-dev12:55
*** cloudvirt has quit IRC12:59
*** cloudvirt has joined #openstack-dev13:00
Adri2000anyone familiar with the nova code could point me to the right direction for fixing https://bugs.launchpad.net/nova/+bug/1013726 ? I tried a *lot* of things already, with no luck :(13:00
uvirtbotLaunchpad bug 1013726 in nova "Essex upgrade doesn't ensure networks have uuid" [Medium,Confirmed]13:00
Adri2000basically the question is: what's the best place in the code to check if networks have an uuid, and if not, generate one13:01
*** kbringard has joined #openstack-dev13:01
*** dolphm_ has quit IRC13:04
smoserjgriffith, ping when you get in13:05
*** dprince has joined #openstack-dev13:05
smoserzul and i would like to chat. if it would be possible to drop use of tid and instead only store in the db the target name, but guarantee that it is unique (which shouldn't be hard, given volume id is).13:06
openstackgerritA change was merged to openstack/nova: Update nova.conf.sample  https://review.openstack.org/1203613:08
*** jrd-redhat has joined #openstack-dev13:10
*** nunosantos has joined #openstack-dev13:11
*** tgall_foo has joined #openstack-dev13:13
*** tgall_foo has quit IRC13:13
*** tgall_foo has joined #openstack-dev13:13
*** DuncanT has quit IRC13:19
*** sacharya has quit IRC13:20
*** DuncanT has joined #openstack-dev13:20
*** z_ is now known as z13:27
*** z has joined #openstack-dev13:27
*** zhuadl has joined #openstack-dev13:33
*** GheRivero has joined #openstack-dev13:35
*** GheAway has quit IRC13:36
*** ewindisch has joined #openstack-dev13:37
*** cmagina has joined #openstack-dev13:37
*** mtreinish has joined #openstack-dev13:37
*** rkukura has joined #openstack-dev13:40
*** al-maisan is now known as almaisan-away13:42
*** edygarcia has joined #openstack-dev13:44
*** rpedde_away is now known as rpedde13:47
*** andrewbogott has joined #openstack-dev13:47
*** andrewbogott has joined #openstack-dev13:47
*** cmagina has quit IRC13:50
*** cmagina has joined #openstack-dev13:52
*** jimfehlig has joined #openstack-dev13:54
*** apevec has joined #openstack-dev13:54
*** apevec has joined #openstack-dev13:54
*** sandywalsh_ has joined #openstack-dev13:54
*** andrewbogott has quit IRC13:55
*** sandywalsh has quit IRC13:55
*** andrewbogott has joined #openstack-dev13:55
*** andrewbogott has quit IRC13:55
*** andrewbogott has joined #openstack-dev13:55
*** andrewbogott is now known as andrewbogott_afk13:56
*** rpedde is now known as rpedde_away13:56
*** andrewbogott_afk is now known as andrewbogott13:56
*** zaneb has quit IRC13:57
*** cmagina has quit IRC13:57
*** cmagina has joined #openstack-dev13:58
*** Mandell has quit IRC14:00
*** matiu has joined #openstack-dev14:01
*** matiu has quit IRC14:01
*** matiu has joined #openstack-dev14:01
*** zaneb has joined #openstack-dev14:01
*** almaisan-away is now known as al-maisan14:01
*** datsun180b has joined #openstack-dev14:06
*** arosen1 has quit IRC14:09
*** vanchester has quit IRC14:12
*** mnewby_ has joined #openstack-dev14:14
*** mnewby has quit IRC14:15
*** mnewby has joined #openstack-dev14:16
*** mnewby_ has quit IRC14:19
*** koolhead17 has joined #openstack-dev14:19
*** blamar has quit IRC14:20
*** jkff has joined #openstack-dev14:24
*** blamar has joined #openstack-dev14:24
*** cp16net is now known as cp16net|away14:25
*** utlemming has quit IRC14:26
*** utlemming has joined #openstack-dev14:26
*** mindpixel has joined #openstack-dev14:26
*** cp16net|away is now known as cp16net14:27
*** utlemming has quit IRC14:28
*** utlemming has joined #openstack-dev14:28
*** blamar has quit IRC14:28
*** Hitesh_ has joined #openstack-dev14:31
*** blamar has joined #openstack-dev14:32
*** maoy has joined #openstack-dev14:33
*** blamar has quit IRC14:36
*** Gordonz has joined #openstack-dev14:36
*** Gordonz has quit IRC14:38
*** Hitesh_ has quit IRC14:41
*** thovden has joined #openstack-dev14:44
*** Gordonz has joined #openstack-dev14:44
timello_Hi there, have you seen this problem before? http://paste.openstack.org/show/20513/ How do I fix it?14:48
*** primemin1sterp has quit IRC14:48
*** primeministerp has joined #openstack-dev14:49
*** Gordonz has quit IRC14:52
*** Gordonz has joined #openstack-dev14:52
*** zhuadl has quit IRC14:53
*** blamar has joined #openstack-dev14:54
*** al-maisan is now known as almaisan-away14:56
*** thovden has quit IRC14:58
*** zhuadl has joined #openstack-dev14:59
*** reidrac has quit IRC15:03
smoseranyone able to ack https://review.openstack.org/#/c/11997/ really quickly ?15:04
*** pixelbeat has quit IRC15:09
*** armaan has joined #openstack-dev15:09
*** armaan has left #openstack-dev15:09
*** sacharya has joined #openstack-dev15:16
*** martine has joined #openstack-dev15:17
*** lloydde has joined #openstack-dev15:17
*** thingee_zz is now known as thingee15:19
Adri2000and still noone to give me a pointer on how to fix bug #1013726 ? I'm sure it'll look easy for anybody familiar with nova / nova-network code :)15:19
uvirtbotLaunchpad bug 1013726 in nova "Essex upgrade doesn't ensure networks have uuid" [Medium,Confirmed] https://launchpad.net/bugs/101372615:19
*** zhuadl has quit IRC15:19
*** maktub has joined #openstack-dev15:21
*** maktub has quit IRC15:22
*** rafaduran has quit IRC15:22
*** lloydde has quit IRC15:22
annegentleAdri2000: ha you said easy and nova network in the same sentence :)15:23
*** rohitk has quit IRC15:25
*** rohitk has joined #openstack-dev15:25
*** mindpixel has quit IRC15:26
*** rohitk has quit IRC15:28
*** heckj has joined #openstack-dev15:28
*** rohitk has joined #openstack-dev15:30
*** cloudvirt has quit IRC15:31
*** cloudvirt has joined #openstack-dev15:38
*** epim_ has quit IRC15:38
jgriffithsmoser: ping15:39
*** therese has quit IRC15:40
*** jtran has joined #openstack-dev15:40
*** johnpur has joined #openstack-dev15:45
*** ChanServ sets mode: +v johnpur15:45
*** cmagina has quit IRC15:45
*** littleidea has joined #openstack-dev15:46
*** samkottler is now known as samkottler|brb15:47
*** daddyjoseph97 has joined #openstack-dev15:48
*** hemna has joined #openstack-dev15:49
smoserzul, ^15:50
*** jkff has quit IRC15:50
zuljgriffith/smoser: heya15:50
jgriffithzul: smoser Yo15:51
zuljgriffith: so i played around a bit with it this morning15:51
smoserjgriffith, so zul has been playing more with tg-damin nd the like.15:51
smoseri have a general quesiton thoug15:51
smoserwhy is it tha twe're trying to use tid ?15:51
smoserdo you have to ?15:51
smoserversus maintaining own uniqueness via name15:51
jgriffithsmoser: There are some uses, but I've been investigating how to change that15:52
jgriffithsmoser: If we can get the call to work without removing current targets we can fix up the rest15:52
smoserit seems a guaranteed race to me.15:52
jgriffithsmoser: Either by manually setting the TID in the table or otherwise15:52
jgriffithsmoser: Rather than hoping the auto-increment is synchronized15:53
smoserright.15:53
jgriffithI can deal with that side of things if we get the tgt-admin stuff working reliably and tested15:53
zuli think im very close now15:54
jgriffithzul: I didn't have much luck but if you can get that piece figured out/fixed we can make the rest fit15:55
zuljgriffith: sounds good to me15:55
*** markmcclain has joined #openstack-dev15:55
jgriffithzul: smoser: I'll finish up my idea around the changes of the TID table15:55
*** dwalleck has joined #openstack-dev15:56
zuljgriffith: at least i have a pretty good understanding of what is giong on now and how to possibly fix it15:56
jgriffithzul: cool... I'm assuming there's no way to get the TID picked up in the tgt-admin with the conf file?15:56
zulactually i think there is15:57
zullemme work this stuff out first and ill let you know15:57
jgriffithsmoser: So I would like to change this for sure... but if we can do it *after* Folsom it would be much better15:57
jgriffithsmoser: It's a big enough change that it may make some nervous.15:57
jgriffithsmoser: On the other hand fixing this outweighs that I think, unless I find something in the code that I didn't see yet15:58
zuljgriffith: basically what was happening is that tgt-admin was deleting the old icssitarget because it wasnt connected to anything15:58
jgriffithzul: Ahhhh...15:58
jgriffithzul: So it auto removes anything not connected on the update15:58
zulyeah15:58
zulfun fun15:59
jgriffithzul: Well I feeel a little better about that TBH15:59
*** zaitcev has joined #openstack-dev15:59
*** samkottler|brb is now known as samkottler15:59
jgriffithzul: If we set the state to ready using tgt-admin would that keep it from removing it?16:00
zuljgriffith: no you just have to use --update <target name>16:00
jgriffithzul: Ok, I'll leave you to it16:01
jgriffithzul: Keep me posted so I can have my backup plan ready16:01
zulsure16:01
zuli should have something today16:01
jgriffithzul: Sounds like I won't need it :)16:01
*** jkff has joined #openstack-dev16:04
*** danpb has joined #openstack-dev16:05
*** cp16net is now known as cp16net|away16:06
*** cp16net|away is now known as cp16net16:06
*** Mandell has joined #openstack-dev16:06
*** e1mer has quit IRC16:10
*** m4xmr has quit IRC16:12
*** rnirmal has joined #openstack-dev16:12
*** jkff has quit IRC16:13
*** gongysh has quit IRC16:14
*** thovden has joined #openstack-dev16:15
*** rohitk has quit IRC16:17
*** rohitk has joined #openstack-dev16:17
*** anniec has joined #openstack-dev16:21
heckjdolphm: you around?16:22
openstackgerritA change was merged to openstack/nova: Port existing code to utils.ensure_tree  https://review.openstack.org/1202516:22
*** sdake has quit IRC16:28
*** andrewbogott is now known as andrewbogott_afk16:28
*** vanchester has joined #openstack-dev16:30
*** cmagina has joined #openstack-dev16:32
*** arosen has joined #openstack-dev16:33
*** jkff has joined #openstack-dev16:33
*** sacharya has quit IRC16:34
*** ncode has joined #openstack-dev16:35
*** sacharya has joined #openstack-dev16:35
*** apevec has quit IRC16:35
*** danpb has quit IRC16:36
*** vanchester has quit IRC16:45
*** colinmcnamara has joined #openstack-dev16:45
*** colinmcnamara has quit IRC16:47
*** shang has joined #openstack-dev16:49
*** jkff has quit IRC16:50
openstackgerritA change was merged to openstack/nova: Fix KeyError when test_servers_get fails.  https://review.openstack.org/1205316:52
*** spiffxp has joined #openstack-dev16:52
*** dolphm has quit IRC16:53
*** tsan has joined #openstack-dev16:55
*** tsan has quit IRC16:58
*** sacharya has quit IRC16:58
*** markmc is now known as mcaway17:00
*** harlowja has joined #openstack-dev17:01
*** lloydde has joined #openstack-dev17:01
*** andrewbogott_afk is now known as andrewbogott17:03
*** sacharya has joined #openstack-dev17:04
*** rohitk has quit IRC17:04
*** zing has quit IRC17:05
*** nati_ueno has joined #openstack-dev17:05
*** derekh has quit IRC17:09
*** darraghb has quit IRC17:10
*** PotHix has joined #openstack-dev17:10
*** thinrhino has joined #openstack-dev17:16
*** thinrhino has quit IRC17:16
*** almaisan-away is now known as al-maisan17:16
*** arosen has quit IRC17:19
*** rpedde_away is now known as rpedde17:20
*** thinrhino has joined #openstack-dev17:21
*** garyk has quit IRC17:21
*** kyriakos has quit IRC17:21
harlowjaqq, is the [paste_deploy] flavor for glance still keystone? just seeing some errors and they might be releated to that17:23
*** jog0 has joined #openstack-dev17:24
*** cloudvirt has quit IRC17:24
*** gyee has quit IRC17:26
*** utlemming has quit IRC17:28
*** utlemming has joined #openstack-dev17:29
*** cp16net is now known as cp16net|away17:31
*** jdurgin has joined #openstack-dev17:35
*** vanchester has joined #openstack-dev17:35
*** M0lt3n has joined #openstack-dev17:36
*** M0lt3n has quit IRC17:37
*** martine has quit IRC17:38
*** martine has joined #openstack-dev17:38
*** moula has joined #openstack-dev17:39
*** moula has quit IRC17:41
*** thovden has quit IRC17:41
*** reed has joined #openstack-dev17:41
*** jrd-redhat has quit IRC17:46
*** vanchester has left #openstack-dev17:47
*** lcheng has joined #openstack-dev17:49
*** Ryan_Lane has joined #openstack-dev17:50
*** cloudvirt has joined #openstack-dev17:50
*** rpedde is now known as rpedde_away17:51
*** gyee has joined #openstack-dev17:55
*** thovden has joined #openstack-dev17:55
*** dolphm has joined #openstack-dev17:57
*** thinrhino has quit IRC17:58
*** jrd-redhat has joined #openstack-dev17:59
jtranwhen i've uploaded a patch review as a Draft, how do I thereafter release it to public?  There used to be a button.18:00
dolphmjtran: Publish?18:00
*** Ryan_Lane has quit IRC18:00
*** dwalleck_ has joined #openstack-dev18:00
jtrandolphm, ah yes, publish.   just type that in as a review comment?  I have no buttons for it in the gui18:01
*** dwalleck has quit IRC18:01
dolphmjtran: i'm looking at a button called Publish in the gui for my own draft review :-/18:01
jtranweird!18:01
*** Ryan_Lane has joined #openstack-dev18:01
jtrani have only 3 buttons.  review, diff all s-b-s, diff all unified18:01
clarkbyou can also git review a new patchset without the -D and that new patchset will be published18:02
clarkbyou should have a publish button though18:03
clarkbare you logged in as the same user that pushed the draft?18:03
jtranclarkb, i wasn't able to do that either it says  ! [remote rejected] HEAD -> refs/publish/master/bug/1004449 (no new changes)18:04
jtranclarkb, yes.  altho i have had probs w/ openid merge probs in the past but i thought they were fixed18:04
clarkbjtran: you need to make a change so that gerrit doesn't treat the new patchset as identical. (updating the commit message will work)18:04
jtranunderstood.  will do.  thx, clarkb18:05
*** arosen has joined #openstack-dev18:06
*** spiffxp has quit IRC18:08
*** cp16net|away is now known as cp16net18:09
*** dwalleck_ has quit IRC18:09
*** ron-slc has joined #openstack-dev18:11
*** cloudvirt has quit IRC18:12
*** cloudvirt has joined #openstack-dev18:15
*** garyk has joined #openstack-dev18:20
*** rohitk has joined #openstack-dev18:24
*** al-maisan is now known as almaisan-away18:25
*** heckj has quit IRC18:29
*** thingee is now known as thingee_zz18:30
*** spiffxp has joined #openstack-dev18:33
arosenhey garyk you here?18:34
*** samkottler is now known as samkottler|bbiab18:35
garykarosen: hi18:35
arosenso before things were working because in my rcloacl i had Q_AUTH=noauth18:35
*** dwalleck has joined #openstack-dev18:35
arosenso after taking that out i'm trying to get things up and running with keystone.18:35
arosenWhen i tried to craete a flat network quantum told me that it was against the policy so I change the env variables to be admin and i created it.18:36
*** ron-slc has quit IRC18:36
arosenNow i'm trying to boot a vm on that network but nova doesn't seem to find the network. (I guess the nova command is still issue it self as demo)18:36
arosenHow did you get around this?18:37
aroseni guess you can do something so you don't need to run as admin :)18:37
*** cloudvirt has quit IRC18:38
arosen    "extension:provider_network:set": [["rule:admin_only"]],     "extension:provider_network:view": [["rule:admin_only"]], ah probably s/admin_only/regular_user18:38
*** thovden has quit IRC18:38
garykarosen: i did it the lazy way. in devstack at the net-create - i added that it was a flat network. so off the bat i just created a flat network18:38
*** dwalleck has quit IRC18:39
arosenAh i see18:39
garykarosen: you could also source openrc admin admin18:39
*** dolphm has quit IRC18:40
garykarosen: sometimes when i do this in the same terminal it keeps the demo user (need to investigate). you can opena new terminal and it ,may help18:40
arosenthanks garyk source openrc admin admin did the trick :)18:41
openstackgerritA change was merged to openstack/python-swiftclient: Fix PEP8 issues.  https://review.openstack.org/1204918:43
*** dspano has joined #openstack-dev18:46
*** lcheng has quit IRC18:48
garykarosen: :)18:48
*** ron-slc has joined #openstack-dev18:48
arosengaryk: btw flat networking is working for me now.18:49
garykarosen: great! i hope to test vlans tomorrow... not sure if i'll succeed18:49
arosenI'm working on testing vlans across two hyprovisors.18:50
arosenhypervisors*18:50
*** koolhead17 has quit IRC18:51
*** heckj has joined #openstack-dev18:54
arosenHas anyone gotten this error from glance recently? 2012-08-28 14:42:13 ERROR glance.api.middleware.context [87ad0d45-748d-4144-8d33-3c79b3fd9273 edfe191c96d2460fa2c83a204d03893a 0d4d4b373b344f2ba292e9a56d78c2e8] Unable to retrieve request id from context18:56
arosenhere's the full log http://codepad.org/hKELWHtM18:57
*** markmcclain has quit IRC19:00
*** ron-slc has quit IRC19:00
*** andrewsmedina has joined #openstack-dev19:01
*** dwalleck has joined #openstack-dev19:06
bcwaldonarosen: its interesting that you're seeing that error19:09
bcwaldonarosen: is it killing your requests, or jsut logging a big ugly ERROR?19:09
*** mrunge has joined #openstack-dev19:09
arosenbcwaldon: what i posted is exactly what i'm seeing.19:09
arosenkilling my request here?19:10
arosens/here/where19:10
bcwaldonarosen: I'm asking if its simply logging an error message but allowing you to continue with the request you're making19:10
bcwaldonarosen: or is that ERROR getting logged and stopping your request?19:10
arosenbcwaldon: i'm running: nova boot --image  a1a0f8ea-bdba-4892-8fff-2760442b59be-flavor 1 --nic net-id=e2908a4c-98cd-4ab5-b61c-131f7ed488e9 teststest19:11
arosennova list says ACTIVE for this vm19:11
*** markmcclain has joined #openstack-dev19:11
bcwaldonarosen: ok19:11
arosenthe nova boot command is async so i never get stopped,  the vm just seems to hang.19:11
bcwaldonarosen: is that vm actually booting up?19:11
bcwaldonok19:11
arosenbcwaldon:  it i connect via vnc it just hangs saying "booting from ROM..."19:12
*** ron-slc has joined #openstack-dev19:12
bcwaldonarosen: so that ERROR that's getting logged isn't touching the request flow19:12
bcwaldonarosen: seems like a red herring19:13
*** steveb_ has joined #openstack-dev19:14
arosenbcwaldon: let me unstack/restack and try again with fresh logs.19:14
*** nunosantos has quit IRC19:16
*** andrewsmedina has left #openstack-dev19:16
*** spiffxp has quit IRC19:18
*** andrewsmedina has joined #openstack-dev19:19
waaandrewsmedina, hehe19:19
arosenbcwaldon the same error is also turning up in g-reg19:19
bcwaldonarosen: ok, I'll look into it19:20
andrewsmedinawaa: hi19:20
andrewsmedinawaa: everything ok?19:20
waagreat! and you?19:21
arosenbcwaldon: thanks, i'm not sure if this will help but here is the g-reg log http://codepad.org/TvWvqXWk19:21
waalooking for a way to start contributing19:21
bcwaldonarosen: thanks19:22
*** samkottler|bbiab is now known as samkottler19:22
andrewsmedinawaa: which of the projects you want to start?19:22
arosenbcwaldon: hrm one thing i'm noticing is that this issue is only occuring when I boot vms on a flat network via quantum. If I boot a vm on a tunnel network I get to the login prompt.19:24
bcwaldonarosen: like I said, I dont think glance is actually standing in the way of what you're trying to do19:24
bcwaldonarosen: but the big ol' ERROR makes it seem like it is19:24
bcwaldonarosen: I'm willing to bet theres some networking magic you need to get your env running19:25
waaandrewsmedina, I think horizon whould be great19:25
*** rafaduran has joined #openstack-dev19:26
*** ron-slc has quit IRC19:27
arosenbcwaldon: Does the network a VM attaches to while booting actually mater? I see it says something about iPXE in vnc, is the vm actually booting via pxe over this interface?19:27
bcwaldonarosen: I'm not a good one to ask that19:27
bcwaldonarosen: but I would guess 'yes'19:27
*** dwalleck has quit IRC19:30
*** dwalleck has joined #openstack-dev19:30
davidkranzmnewby: Did you get the invite?19:34
davidkranzdwalleck: Did you get the invite?19:34
*** zaneb has quit IRC19:34
dwallecknope19:34
davidkranzdwalleck: Perhaps you can try to start a hangout.19:35
dwalleckugh, need to install this plugin first19:35
davidkranzdwalleck: Yeah. But we did it before...19:37
*** johnC has joined #openstack-dev19:37
dwalleckNew laptop since then :-)19:37
davidkranzmnewby: Are you there?19:41
mnewbydavidkranz: yes19:41
dwalleckokay, tried sending invites19:41
waais there a quantum developer documentation?19:41
*** zing has joined #openstack-dev19:43
*** markmcclain has quit IRC19:43
jgriffithclayg: ping19:44
claygjgriffith: pong19:44
jgriffithclayg: You're killing me!  :)19:45
jgriffithclayg: So I'm good with your patch...19:45
claygwhat did *I* do!19:45
jgriffithclayg: Some notes about nova version and clients19:45
jgriffithclayg: So the part that's killing me is we're supposed to be feature freeze19:45
jgriffithclayg: So, this is a bug.... but if you have more of these types of deals we better move quick :)19:46
claygyeah that's why I tied it to a bug :)19:46
jgriffithclayg: :)19:46
*** cp16net is now known as cp16net|away19:46
claygjgriffith: are we talking about the admin-api branch?19:46
jgriffithclayg: I know, but just saying... it's borderline.  Just want to make sure you don't have more up your sleeve :)19:46
jgriffithclayg: huruh?19:46
*** markmcclain has joined #openstack-dev19:47
claygjgriffith: well I want to add snapshot list filter by volume id19:47
jgriffithclayg: I'm talking the rename19:47
claygjgriffith: oh... yeah that's the easy one19:47
*** rohitk has quit IRC19:47
*** cp16net|away is now known as cp16net19:47
*** dprince has quit IRC19:47
jgriffithclayg: Ok... but ya better do it quickly :)19:47
*** markmcclain has quit IRC19:48
arosenHi bcwaldon, I believe you are right this is not related. Looking at the vm log I see it's sending dhcp requests and i guess it waits for those to all time out before it presents you with a login prompt.19:49
bcwaldonok, thats good (sorta)19:49
*** rohitk has joined #openstack-dev19:50
*** rohitk has quit IRC19:50
claygjgriffith: so I'm working on the python-cinderclient change now.  Can I use git review -R to tell gerrit that the python-cinderclient change depends on the cinder change?19:51
*** markmcclain has joined #openstack-dev19:51
*** thingee_zz is now known as thingee19:52
*** maurosr has quit IRC19:54
andrewsmedinawaa: http://wiki.openstack.org/QuantumDevelopment19:56
*** littleidea has quit IRC19:56
jgriffithclayg: You can just add a depends in gerrit19:58
*** littleidea has joined #openstack-dev19:59
waasomeone with power to edit wiki.openstack.org first page  should  put a link to quantum development page there :D20:00
*** cp16net is now known as cp16net|away20:01
openstackgerritA change was merged to openstack/swift: fallocate call error handling  https://review.openstack.org/1203020:03
*** sacharya has quit IRC20:03
annegentlewaa: you got it20:03
*** ijw1 has joined #openstack-dev20:04
*** ijw has quit IRC20:04
*** epim has joined #openstack-dev20:04
waaannegentle, look like it's  an immutable page20:05
*** spiffxp has joined #openstack-dev20:05
annegentlewaa: yes it is limited to a few editors20:05
*** samkottler has quit IRC20:06
arosenhi garyk you still around?20:06
*** samkottler has joined #openstack-dev20:06
*** sacharya has joined #openstack-dev20:06
arosenI'm wondering if you ever saw q-agt crash with http://codepad.org/AeyEBTOl20:06
waaannegentle, thanks :D20:08
*** dwalleck has quit IRC20:08
openstackgerritA change was merged to openstack/swift: x-newest cleanup code with test. Fixes bug 1037337  https://review.openstack.org/1193820:09
uvirtbotLaunchpad bug 1037337 in swift "Get with X-Newest leads to errors in object server" [Undecided,In progress] https://launchpad.net/bugs/103733720:09
*** maurosr has joined #openstack-dev20:09
*** cp16net|away is now known as cp16net20:11
*** dwalleck has joined #openstack-dev20:12
*** dwalleck has quit IRC20:13
*** ijw1 has quit IRC20:16
*** ijw has joined #openstack-dev20:16
*** epim has quit IRC20:16
*** epim has joined #openstack-dev20:16
*** japage has quit IRC20:18
*** andrewbogott is now known as andrewbogott_afk20:19
*** cp16net is now known as cp16net|away20:20
*** cp16net|away is now known as cp16net20:20
*** Guest31583 has quit IRC20:22
*** andrewbogott_afk is now known as andrewbogott20:22
*** ron-slc has joined #openstack-dev20:23
*** samkottler has quit IRC20:23
*** samkottler has joined #openstack-dev20:23
*** samkottler has quit IRC20:23
*** samkottler has joined #openstack-dev20:24
*** jaygeebee has joined #openstack-dev20:24
*** mrunge has quit IRC20:27
*** jkff has joined #openstack-dev20:27
*** samkottler has quit IRC20:28
*** samkottler has joined #openstack-dev20:28
*** markmcclain has quit IRC20:30
*** markmcclain has joined #openstack-dev20:32
*** zing has quit IRC20:45
*** maoy has quit IRC20:48
*** torgomatic has quit IRC20:49
*** torgomatic has joined #openstack-dev20:50
*** andrewbogott is now known as andrewbogott_afk20:50
*** martine has quit IRC20:51
*** rbasak has quit IRC20:53
*** gabrielhurley has joined #openstack-dev20:55
*** thovden has joined #openstack-dev20:58
*** mcaway is now known as markmc21:01
*** dolphm has joined #openstack-dev21:03
*** rbasak has joined #openstack-dev21:05
*** maurosr has quit IRC21:06
*** anniec has quit IRC21:11
*** jrd-redhat has quit IRC21:20
*** lts has quit IRC21:20
*** andrewbogott_afk is now known as andrewbogott21:21
*** bitblt has joined #openstack-dev21:22
*** rafaduran has quit IRC21:23
*** rafaduran1 has joined #openstack-dev21:23
*** thovden has quit IRC21:30
*** GheRivero has quit IRC21:31
*** EmilienM has left #openstack-dev21:36
*** mtreinish has quit IRC21:37
openstackgerritA change was merged to openstack/swift: Do not use pickle for serialization in memcache, but JSON  https://review.openstack.org/910521:39
*** dachary has quit IRC21:39
*** ron-slc has quit IRC21:40
*** rkukura has quit IRC21:40
*** sacharya has quit IRC21:43
*** datsun180b has quit IRC21:45
*** rnirmal has quit IRC21:48
*** sacharya has joined #openstack-dev21:52
*** johnC has quit IRC21:55
*** sacharya has quit IRC21:56
*** rafaduran1 has left #openstack-dev21:57
openstackgerritA change was merged to openstack/python-swiftclient: Add ability to download without writing to disk.  https://review.openstack.org/1156921:57
*** rbasak has quit IRC21:58
*** tgall_foo has quit IRC22:02
*** reed has quit IRC22:03
*** tgall_foo has joined #openstack-dev22:03
*** tgall_foo has quit IRC22:03
*** tgall_foo has joined #openstack-dev22:03
*** kbringard has quit IRC22:03
*** anniec has joined #openstack-dev22:04
*** dkehn_ has joined #openstack-dev22:06
*** markmc has quit IRC22:07
*** dkehn has quit IRC22:08
*** markmcclain has quit IRC22:09
*** cloudvirt has joined #openstack-dev22:09
*** ron-slc has joined #openstack-dev22:10
*** dkehn has joined #openstack-dev22:10
*** rods1 has quit IRC22:11
*** gabrielhurley has quit IRC22:12
*** dkehn_ has quit IRC22:12
*** markmcclain has joined #openstack-dev22:13
*** thingee is now known as thingee_zz22:14
*** dspano has quit IRC22:16
*** blamar has quit IRC22:18
*** pixelbeat has joined #openstack-dev22:27
*** jtran has quit IRC22:30
*** epim has quit IRC22:32
*** andrewsmedina has quit IRC22:34
*** lloydde has quit IRC22:38
*** lloydde has joined #openstack-dev22:39
*** lloydde has quit IRC22:43
openstackgerritA change was merged to openstack/glance: Activation notification for glance v1 api  https://review.openstack.org/1188722:44
*** heckj has quit IRC22:45
*** jimfehlig has quit IRC22:49
openstackgerritA change was merged to openstack/glance: Fixes issue with non string header values in glance client  https://review.openstack.org/1116222:52
openstackgerritA change was merged to openstack/glance: Clean up policies docs page  https://review.openstack.org/1183822:52
openstackgerritA change was merged to openstack/glance: Drop deprecated client docs  https://review.openstack.org/1183922:53
openstackgerritA change was merged to openstack/glance: Rename glance api docs to something more concise  https://review.openstack.org/1184322:53
*** gyee has quit IRC22:58
*** edygarcia has quit IRC22:58
*** e1mer has joined #openstack-dev23:01
*** s0mik has joined #openstack-dev23:01
*** arosen has quit IRC23:07
*** ron-slc has quit IRC23:08
*** openstackjenkins has quit IRC23:14
*** cp16net is now known as cp16net|away23:16
*** openstackjenkins has joined #openstack-dev23:16
*** mnewby has quit IRC23:18
*** openstackjenkins has quit IRC23:18
*** openstackjenkins has joined #openstack-dev23:19
*** bitblt has quit IRC23:29
*** cp16net|away is now known as cp16net23:31
openstackgerritA change was merged to openstack/nova: Include launch-index in openstack style metadata.  https://review.openstack.org/1199723:37
*** markmcclain has quit IRC23:40
*** cloudvirt has quit IRC23:42
*** s0mik has quit IRC23:42
*** dolphm has quit IRC23:45
*** arosen has joined #openstack-dev23:55
openstackgerritA change was merged to openstack/glance: Remove partial image data when filesystem is full  https://review.openstack.org/1180523:58
openstackgerritA change was merged to openstack/glance: HTTPBadRequest in v2 on malformed JSON request body.  https://review.openstack.org/1187323:58

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