Wednesday, 2016-04-13

*** zenoway has joined #openstack-dragonflow00:23
*** gongysh has joined #openstack-dragonflow01:08
openstackgerritMerged openstack/dragonflow: change dragonflow apps to use mod_flow instead of ryu's OFPFlowMod  https://review.openstack.org/30405001:12
openstackgerritLi Ma proposed openstack/dragonflow: Fix event names of db  https://review.openstack.org/30461801:21
*** yamamot__ has joined #openstack-dragonflow02:00
*** yamamoto has quit IRC02:03
openstackgerritheshan proposed openstack/dragonflow: code for local controller reliability  https://review.openstack.org/29206002:11
openstackgerritheshan proposed openstack/dragonflow: remove redundant comma(',') from table_id and cookie  https://review.openstack.org/30445802:15
openstackgerritheshan proposed openstack/dragonflow: add check_controller() and set_controller_fail_mode() to vswitch_api  https://review.openstack.org/30402603:04
hshanHad anyone got the same 'icmp_ping_pong' test failed?03:12
hshanthe details is:03:12
hshan2016-04-12 08:21:19.124 | 2016-04-12 08:21:19.102 | ==============================03:12
hshan2016-04-12 08:21:19.126 | 2016-04-12 08:21:19.104 | Failed 1 tests - output below:03:12
hshan2016-04-12 08:21:19.128 | 2016-04-12 08:21:19.106 | ==============================03:12
hshan2016-04-12 08:21:19.130 | 2016-04-12 08:21:19.108 |03:12
hshan2016-04-12 08:21:19.132 | 2016-04-12 08:21:19.110 | dragonflow.tests.fullstack.test_apps.TestL3App.test_icmp_ping_pong03:12
hshan2016-04-12 08:21:19.134 | 2016-04-12 08:21:19.112 | ------------------------------------------------------------------03:12
hshan2016-04-12 08:21:19.136 | 2016-04-12 08:21:19.113 |03:12
hshan2016-04-12 08:21:19.138 | 2016-04-12 08:21:19.116 | Captured traceback:03:12
hshan2016-04-12 08:21:19.140 | 2016-04-12 08:21:19.118 | ~~~~~~~~~~~~~~~~~~~03:12
hshan2016-04-12 08:21:19.143 | 2016-04-12 08:21:19.120 |     Traceback (most recent call last):03:12
hshan2016-04-12 08:21:19.153 | 2016-04-12 08:21:19.122 |       File "dragonflow/tests/fullstack/test_apps.py", line 577, in test_icmp_ping_pong03:13
hshan2016-04-12 08:21:19.153 | 2016-04-12 08:21:19.124 |         self.policy.wait(30)03:13
*** yamamot__ has quit IRC03:20
*** yamamot__ has joined #openstack-dragonflow03:21
*** yamamot__ has quit IRC03:26
*** yamamot__ has joined #openstack-dragonflow04:04
*** oanson has joined #openstack-dragonflow05:14
*** mestery has quit IRC05:17
*** mestery has joined #openstack-dragonflow05:23
*** yamamot__ has quit IRC05:28
*** yamamot__ has joined #openstack-dragonflow05:29
*** yamamo___ has joined #openstack-dragonflow05:34
*** yamamot__ has quit IRC05:36
*** WANGFeng has joined #openstack-dragonflow05:59
openstackgerritLi Ma proposed openstack/dragonflow: Fix event names of db  https://review.openstack.org/30461806:04
*** yamamo___ has quit IRC06:10
*** yamamot__ has joined #openstack-dragonflow06:11
gampelyuanwei: ping06:15
gampelShlomo: did you get it to work yesterday ?06:16
openstackgerritMerged openstack/dragonflow: Add topic to the list as test and only once  https://review.openstack.org/30458006:17
hshanoanson, gsagie: have you see my update?06:18
oansonhshan, I am looking at it now06:19
hshanok, tell me if you got any problem06:19
gampel hshan: do you know whats the status of the SG patch  ?06:20
*** yuanwei has joined #openstack-dragonflow06:20
hshangampel: a moment06:23
hshanyuanwei is here06:24
yuanweiHi, i'm here06:24
hshanoanson: I see your comments, what about we modify it to:06:24
hshanif br_int is not None and\06:24
hshan     br_int.controller is not None and\06:24
hshan     br_int.controller[0].target == target:06:24
hshan            is_controller_set = True06:24
oansonhshan, I was thinking maybe loop over the controllers, until we find one that we want06:25
oansoni.e. a controller where .target == target.06:26
oansonIf there are no controllers, I think br_int.controller will be an empty list06:26
hshanoh, I got you06:26
hshan1 sec06:27
*** hujie has joined #openstack-dragonflow06:28
yuanweigampel: The bug about two SG records in lport I fixed and test locally. I will upload a patch to commit that modification.06:28
hshanoanson: what about this:06:32
hshandef check_controller(self, target):06:32
hshan        is_controller_set = False06:32
hshan        br_int = idlutils.row_by_value(self.idl, 'Bridge', 'name', 'br-int')06:32
hshan        if br_int is not None and\06:32
hshan           br_int.controller is not None and\06:32
hshan           target in br_int.controller:06:32
hshan            is_controller_set = True06:32
hshan        return is_controller_set06:32
*** yuli_s has joined #openstack-dragonflow06:33
oansonhshan, this won't work. br_int.controller contains controllers. target is a host/port string06:34
*** WANGFeng has quit IRC06:38
hshanoanson, I'm making experiment locally, I'll give you the result in a moment06:40
hujiebr-int.controller is just a uuid of controller table entry06:43
oansonhujie, yes, but the IDL turns it into a reference06:43
yuli_sHello06:44
yuli_sregarding the fix for the 'update' action06:44
yuli_snick-ma, fixed this bug got the ovsinterface table06:44
hshanoanson: yes, I understand what you mean, we cannot do this: target in br_int.controller06:44
yuli_swe are getting updates for other tbales as well06:44
yuli_sI can fix it when we handle events as suggested here06:45
hshanoanson: but I'm thinking about is there a way to specify more than one controller to OVS?06:45
yuli_shttps://review.openstack.org/#/c/304152/3/dragonflow/db/api_nb.py06:45
hujieif you want to get the target you can search from the controller table by controller-uuid06:45
oansongsagie, ping06:45
yuli_sand revert the change of mali06:45
yuli_sor I can fix it when we send updates for other tables06:46
yuli_sin: _send_db_change_event()06:46
oansonhshan, I think so, but I want to verify. Maybe gsagie knows.06:46
yuli_sfile: dragonflow/db/api_nb.py06:46
yuli_schange : 'update' action to 'set' action06:46
gsagiehshan: yes, you can set multipile controllers06:46
gsagiemultiple06:47
hshanoanson, gsagie: I remembered I've done that before06:47
hujiebr-int.controller is a list06:47
gsagieOpenFlow support multi controllers06:47
hujiemulti-controller of course06:47
gsagieyes , you have a Controller table which can have few entries06:47
gsagieand then each bridge has a list of controllers entries06:47
hujiebut master is only one, others may be slave06:48
hshanhujie: yes06:48
hshanit can be configured on the cmd line like this: 'ovs-vsctl set-controller br-int tcp:10.178.128.149:6633 tcp:10.178.1.1:6633'06:49
hujieyes06:49
hshanthen I can got:06:49
hshanstack@PEK1000038004:~/dragonflow/dragonflow$ ovs-vsctl show06:49
hshan398d9775-89a2-4791-b054-2f7d08407ffa06:49
hshan    Bridge br-int06:49
hshan        Controller "tcp:10.178.128.149:6633"06:49
hshan        Controller "tcp:10.178.1.1:6633"06:49
hshan        fail_mode: secure06:49
hshanokay, I'm making experiment base on this06:50
gsagieBut we currently dont have this support in Dragonflow (yet)06:50
hshanso..06:50
gsagiealso it doesnt have to be master/slave06:50
hujieyes in dragonflow only one controller06:50
gsagiethere are "Equal" state as well in OF, but why do you need this?06:50
oansonhshan, you can also use ovsdb-client to see the OVS database. e.g. ovsdb-client dump06:50
hujieno cluster @@06:50
hshanoanson: I've done that06:51
hujieyes if you only one controller, the role will be equal06:51
hujieit has the same meaning with master role for unique controller node06:51
hshangsagie: I and oanson are considering about why we need to modify the check_controller_is_set() interface to adapt to this situation06:52
hshantypo:are we need to06:52
hshantypo:do we need06:52
oansongsagie, check_controller_is_set currently assumes that there is only one controller. I wanted to verify this.06:53
oanson*we06:53
hshangsagie: from this patch: https://review.openstack.org/#/c/304026/06:53
gsagiesec let me look06:54
hshanok06:54
gsagiewell, i agree with oanson comment, there is no risk right now because Dragonflow doesnt know to handle multi controllers anyway, but i think its a relative easy fix to make the code iterate on the list of controllers06:55
gsagieand check it06:55
gsagiehshan, you need help with that?06:55
hshanjust need all of your's review:)06:56
openstackgerritYuli proposed openstack/dragonflow: Fix empty ofport value  https://review.openstack.org/30415206:56
gsagiehshan: np, i tried your patch yesterday, eveyrthing worked when i didnt use the aging app06:56
gsagienow i am trying when its enabled06:56
hshandon't forget to add aging.Aging to the app_list :)06:57
gsagiei think we must enable it by default as if its not it means flows are not deleted on controller restart06:57
gsagiehshan: yeah thats what i talked about, i first tried it when its not on the app list, now trying when its in the app list06:57
hshanyes, agree06:58
*** hujie has quit IRC06:58
*** hujie has joined #openstack-dragonflow07:02
*** zenoway has quit IRC07:03
*** zenoway has joined #openstack-dragonflow07:04
*** omnipresent has joined #openstack-dragonflow07:05
*** omnipresent has quit IRC07:06
*** omnipresent has joined #openstack-dragonflow07:07
*** zenoway has quit IRC07:09
*** omnipresent has quit IRC07:11
openstackgerritMerged openstack/dragonflow: Fix event names of db  https://review.openstack.org/30461807:26
hshangampel: I rephrased the comment, please help to review it here, thx:07:37
hshanglobal cookie is used by flows of all table, but local cookie is used by flows of a small part of table. In order to avoid conflict between cookies, global cookies should not overlapped with each other, but local cookies could be overlapped for saving space of cookie.07:37
openstackgerrityuan wei proposed openstack/dragonflow: This patch implements security group app  https://review.openstack.org/28053807:39
openstackgerritMerged openstack/dragonflow: Mitaka Version Features Update  https://review.openstack.org/30382507:41
openstackgerritheshan proposed openstack/dragonflow: code for local controller reliability  https://review.openstack.org/29206007:44
openstackgerrityuan wei proposed openstack/dragonflow: This patch implements security group app  https://review.openstack.org/28053807:46
openstackgerritYuli proposed openstack/dragonflow: Fix empty ofport value  https://review.openstack.org/30415207:50
*** zenoway has joined #openstack-dragonflow07:51
*** omnipresent has joined #openstack-dragonflow07:52
openstackgerrityuan wei proposed openstack/dragonflow: This patch implements security group app  https://review.openstack.org/28053807:52
yuli_smali, your patch is not full07:55
yuli_s2016-04-13 10:54:48.190 WARNING dragonflow.db.api_nb [-] Unknown action update for table publisher07:55
yuli_si got the latest code07:55
yuli_snick-ma,07:56
*** zenoway has quit IRC07:56
yuli_snick-ma, I am still get 'update' event with your patch07:57
gsagieyuli_s: do you use https://review.openstack.org/#/c/304618/07:59
gsagieit just got merged ~30 minutes ago08:00
yuli_sgsagie, absolutely08:04
yuli_sshlomo@ubuntu:/opt/stack/dragonflow$ git pull08:04
yuli_sAlready up-to-date.08:04
yuli_sshlomo@ubuntu:/opt/stack/dragonflow$ git branch08:04
yuli_s* master08:04
yuli_sraofei, u arround ?08:05
gsagieyuli_s: yes i still see 'update' in recent code, i will send a fix08:08
raofeihi yuli08:09
yuli_sraofei, the dnat code does not work very good with the security group patch08:12
*** gongysh has quit IRC08:12
yuli_sif you have some time08:13
yuli_splease apply this patch and check https://review.openstack.org/#/c/280538/08:13
yuli_sthanks !08:13
openstackgerritGal Sagie proposed openstack/dragonflow: Remove last leftovers of 'update'  https://review.openstack.org/30503808:23
yuli_sgsagie, https://review.openstack.org/#/c/305038/1/dragonflow/db/drivers/ovsdb_vswitch_impl.py i am not sure that this is right here08:28
raofeiok, will do08:33
*** todin has joined #openstack-dragonflow08:35
openstackgerrityuan wei proposed openstack/dragonflow: Impliment security group fullstack and ut cases  https://review.openstack.org/29910508:35
gsagieyuli_s: why not?08:41
yuli_syuanwei, hello08:43
yuli_syuanwei, the problem with double fields for security groups still exists !08:43
yuli_ssee my comments here: https://review.openstack.org/#/c/280538/2108:43
yuli_sgsagie, it was for ovsinterface table i think08:44
gsagieyuli_s: i dont understand what you mean by "it was for ovsinterface table i think" , what is wrong with the change i did? there is no code that suppose to call this method with 'update'08:46
gsagieso why do we need to convert it to 'set'08:47
gsagiei can keep this line, i just think its not really needed08:47
gsagiewith latest code08:47
yuli_stalk with nick-ma about it ;)08:48
gsagieyuli_s: 好吧,我會08:49
yuli_syuanwei, i just saw your comments to the bug, let me read them again08:51
gsagieyuanwei: hi, are you here?08:56
gsagieregarding your comment on yuli_s bug, i see you agree that we only need one field for security groups on lport, i think both me and yuli_s also agree with that, is anyone working on fixing it?08:58
gsagieyuli_s: i see in latests patch08:58
gsagiethat yuanwei fixed this issue08:58
gsagielook at plugin.py08:58
gsagiehttps://review.openstack.org/#/c/280538/08:59
yuanweiI'm upload this fix to the new patch08:59
gsagieyeah just saw, but when port is created sgids are always None?08:59
gsagiecant it be that we get sgids when port is created?08:59
openstackgerrityuan wei proposed openstack/dragonflow: Impliment security group fullstack and ut cases  https://review.openstack.org/29910509:00
gsagiei think you need to use _get_security_groups_on_port09:01
nick-mayuli_s: what's up?09:01
gsagienick-ma: yuli_s was concerned from my patch: https://review.openstack.org/305038    but since 'update' is removed completely i thought it will be safe to remove the line from notify09:02
gsagiewhich convert 'update' to 'set'09:02
gsagiehe wanted to make sure you agree09:02
nick-maok, i see.09:02
openstackgerrityuan wei proposed openstack/dragonflow: This patch implements security group app  https://review.openstack.org/28053809:10
*** omnipresent has quit IRC09:10
*** zenoway has joined #openstack-dragonflow09:11
oansonyuanwei, I am looking at the errors gampel mentioned.09:12
*** omnipresent has joined #openstack-dragonflow09:12
oansonIt looks like OVS is rejecting the flows with ct_state as have bad mask.09:12
oansonI looked at the command and the documentation, and couldn't find anything wrong.09:13
oansonSo I wanted to ask - did you have to do anything to get OVS to accept the flows with ct_state?09:13
*** omnipresent has quit IRC09:13
*** omnipresent has joined #openstack-dragonflow09:14
oansonyuanwei: ping09:14
*** zenoway has quit IRC09:16
yuanweipong09:17
*** omnipresent has quit IRC09:18
oansonHi09:18
oansonDid you see my question above?09:18
yuanweijust saw..09:18
oansonyuanwei, I also tested it on another server, and the command works. So it's very strange09:19
oansonI was wondering if you ran into this behaviour?09:19
openstackgerritMerged openstack/dragonflow: Fix empty ofport value  https://review.openstack.org/30415209:20
yuanweiI don't remember I have some extra configuration on OVS09:20
oansonAs I said - very strange. :)09:22
gsagieyuanwei: you use Ubuntu right?09:22
yuanweiyes, ubuntu 1409:23
oansonBoth my systems (working and non-working) are fedora...09:24
yuanweiafter running stack.sh, OVS will be reinstalled, and all old configurations in OVS will be clear?09:26
oansonI am now testing that09:27
oansonstack.sh just takes a bit of time :)09:27
*** irenab_ has joined #openstack-dragonflow09:38
*** kun_huang_ has joined #openstack-dragonflow09:40
*** mestery_ has joined #openstack-dragonflow09:40
yuanweiyuli_s: Hi, about the double fields bug, just make sure that you restarted the neutron-server after update the codes?09:44
yuanweiyuli_s: ping09:45
*** mestery has quit IRC09:47
*** irenab has quit IRC09:47
*** kun_huang has quit IRC09:47
*** mestery_ is now known as mestery09:47
*** irenab_ is now known as irenab09:47
*** kun_huang_ is now known as kun_huang09:49
*** zenoway has joined #openstack-dragonflow10:02
*** zenoway has quit IRC10:19
*** yamamot__ has quit IRC10:25
*** openstack has joined #openstack-dragonflow11:33
*** openstackgerrit has quit IRC11:35
*** gampel has quit IRC11:35
*** liuhaixia has quit IRC11:35
*** hujie has quit IRC11:35
*** gampel has joined #openstack-dragonflow11:36
*** oanson has quit IRC11:37
*** zenoway has joined #openstack-dragonflow11:49
*** oanson has joined #openstack-dragonflow11:49
*** zenoway has quit IRC11:49
*** zenoway has joined #openstack-dragonflow11:49
*** openstackgerrit has joined #openstack-dragonflow11:51
*** zenoway has quit IRC11:56
*** zenoway has joined #openstack-dragonflow11:57
*** yamamoto has joined #openstack-dragonflow12:14
*** yuanwei has left #openstack-dragonflow12:25
*** zenoway has quit IRC12:26
*** zenoway has joined #openstack-dragonflow12:27
*** omnipresent has joined #openstack-dragonflow12:28
*** omnipresent has quit IRC12:29
*** omnipresent has joined #openstack-dragonflow12:29
*** omnipresent has quit IRC12:30
*** omnipresent has joined #openstack-dragonflow12:30
*** yamamoto has quit IRC12:31
*** zenoway has quit IRC12:32
*** omnipresent has quit IRC12:35
openstackgerritEran Gampel proposed openstack/dragonflow: Enable back pub-sub topic test  https://review.openstack.org/30520912:52
*** yamamoto has joined #openstack-dragonflow13:02
*** yuanwei has joined #openstack-dragonflow13:03
openstackgerrityuan wei proposed openstack/dragonflow: Impliment security group fullstack and ut cases  https://review.openstack.org/29910513:12
*** zenoway has joined #openstack-dragonflow13:12
*** zenoway has quit IRC13:17
*** zenoway has joined #openstack-dragonflow13:21
*** zenoway has quit IRC13:25
*** yuanwei has quit IRC13:31
openstackgerritMerged openstack/dragonflow: Remove last leftovers of 'update'  https://review.openstack.org/30503813:34
yuli_sraofei, looks like i detected a problem13:34
openstackgerritMerged openstack/dragonflow: add check_controller() and set_controller_fail_mode() to vswitch_api  https://review.openstack.org/30402613:34
yuli_swhen DNAT is enabled, in table=15 you send packets directly in port13:35
yuli_sfor example:  cookie=0x0, duration=2825.525s, table=15, n_packets=32, n_bytes=2368, priority=100,ip,nw_dst=10.100.100.201 actions=set_field:fa:16:3e:3a:2b:37->eth_src,set_field:fa:16:3e:9b:37:bf->eth_dst,dec_ttl,set_field:10.0.0.8->ip_dst,output:1713:35
yuli_sit does not passes the fw rules,13:35
yuli_smy test is the following: I am conenecting from host to vm using the flowing IP address13:36
*** CrayZee1 has joined #openstack-dragonflow13:37
gsagiegood catch yuli_s!13:39
gsagiehowever, security app patch is not yet merged, so i think yuanwei need to update DNAT app for that13:40
yuli_si just opened a bug: https://bugs.launchpad.net/dragonflow/+bug/156990313:43
openstackLaunchpad bug 1569903 in DragonFlow "Connection to FIP does not passes firewall" [Undecided,New]13:43
*** oanson has quit IRC13:43
*** CrayZee has quit IRC13:43
gsagieThere is no need to open a bug13:47
gsagieyou are opening a bug on a code that is not yet merged..13:47
gsagieyou can write it in the review and add -113:48
*** yuanwei has joined #openstack-dragonflow13:49
*** zenoway has joined #openstack-dragonflow13:55
*** zenoway has quit IRC13:55
*** zenoway has joined #openstack-dragonflow13:56
*** zenoway has quit IRC14:01
*** zenoway has joined #openstack-dragonflow14:11
*** zenoway has quit IRC14:15
*** zenoway has joined #openstack-dragonflow14:18
openstackgerritGal Sagie proposed openstack/dragonflow: allow packet data to be passed as bytearray to applicative tests  https://review.openstack.org/30513114:22
*** zenoway has quit IRC14:23
*** zenoway has joined #openstack-dragonflow14:23
openstackgerritMerged openstack/dragonflow: remove redundant comma(',') from table_id and cookie  https://review.openstack.org/30445814:24
*** yuanwei has quit IRC14:37
openstackgerritMerged openstack/dragonflow: Enable back pub-sub topic test  https://review.openstack.org/30520914:49
*** yuli_s has quit IRC14:55
*** zenoway has quit IRC15:08
*** yuanwei has joined #openstack-dragonflow15:36
yuanweigampel: Hi, Eran, I replied in that patch https://review.openstack.org/#/c/280538/2215:37
*** zenoway has joined #openstack-dragonflow15:38
*** openstack has joined #openstack-dragonflow16:10
*** zenoway has quit IRC16:13
*** omnipresent has joined #openstack-dragonflow16:29
*** omnipresent has quit IRC16:59
*** zenoway has joined #openstack-dragonflow17:00
*** omnipresent has joined #openstack-dragonflow17:01
*** omnipresent has quit IRC17:01
*** omnipresent has joined #openstack-dragonflow17:02
*** zenoway_ has joined #openstack-dragonflow17:03
*** hujie has joined #openstack-dragonflow17:03
*** zenoway_ has quit IRC17:03
*** zenoway_ has joined #openstack-dragonflow17:04
*** zenoway has quit IRC17:04
*** zenoway has joined #openstack-dragonflow17:05
*** zenoway has quit IRC17:05
*** zenoway has joined #openstack-dragonflow17:06
*** zenoway has quit IRC17:06
*** omnipresent has quit IRC17:06
*** zenoway has joined #openstack-dragonflow17:06
*** zenoway has quit IRC17:07
*** zenoway has joined #openstack-dragonflow17:08
*** zenoway_ has quit IRC17:08
*** zenoway has quit IRC17:08
*** zenoway has joined #openstack-dragonflow17:09
*** zenoway has quit IRC17:09
*** zenoway has joined #openstack-dragonflow17:10
*** omnipresent has joined #openstack-dragonflow17:11
*** omnipresent has quit IRC17:11
*** omnipresent has joined #openstack-dragonflow17:12
*** zenoway_ has joined #openstack-dragonflow17:13
*** zenoway has quit IRC17:14
*** zenoway_ has quit IRC17:14
*** zenoway has joined #openstack-dragonflow17:14
*** omnipresent has quit IRC17:16
*** zenoway has quit IRC17:19
*** zenoway has joined #openstack-dragonflow17:37
*** zenoway has quit IRC17:41
openstackgerritMerged openstack/dragonflow: Updated from global requirements  https://review.openstack.org/30517817:43
*** zenoway has joined #openstack-dragonflow18:00
*** omnipresent has joined #openstack-dragonflow18:02
*** omnipresent has quit IRC18:03
*** omnipresent has joined #openstack-dragonflow18:04
*** zenoway has quit IRC18:04
*** omnipresent has quit IRC18:06
*** zenoway has joined #openstack-dragonflow18:09
*** zenoway has quit IRC18:14
*** zenoway has joined #openstack-dragonflow18:14
*** zenoway has quit IRC18:15
*** zenoway has joined #openstack-dragonflow18:15
*** zenoway has quit IRC18:17
*** zenoway has joined #openstack-dragonflow18:18
*** zenoway has quit IRC18:23
*** zenoway has joined #openstack-dragonflow18:27
*** zenoway has quit IRC18:32
*** CrayZee1 has quit IRC18:38
*** zenoway has joined #openstack-dragonflow18:38
*** todin has quit IRC18:39
*** CrayZee has joined #openstack-dragonflow18:39
*** yamamoto has quit IRC18:39
*** openstackgerrit has quit IRC18:39
*** todin has joined #openstack-dragonflow18:41
*** raofei has quit IRC18:41
*** zenoway has quit IRC18:43
*** zenoway has joined #openstack-dragonflow18:49
*** zenoway has quit IRC18:54
*** openstackgerrit has joined #openstack-dragonflow18:56
*** raofei has joined #openstack-dragonflow19:13
*** yamamoto has joined #openstack-dragonflow19:40
*** yamamoto has quit IRC19:47
*** CrayZee has quit IRC19:48
*** Mic22 has quit IRC19:48
*** CrayZee has joined #openstack-dragonflow19:57
*** Mic22 has joined #openstack-dragonflow19:57
*** CrayZee has quit IRC20:04
*** Mic22 has quit IRC20:04
*** CrayZee1 has joined #openstack-dragonflow20:10
*** CrayZee has joined #openstack-dragonflow20:11
*** Mic22 has joined #openstack-dragonflow20:11
*** CrayZee has quit IRC20:11
*** Mic22 has quit IRC20:15
*** Mic22 has joined #openstack-dragonflow20:16
*** CrayZee has joined #openstack-dragonflow20:41
*** CrayZee1 has quit IRC20:47
*** saggi1 has joined #openstack-dragonflow21:14
*** saggi1 has quit IRC21:14
*** saggi1 has joined #openstack-dragonflow21:15
*** saggi1 has quit IRC21:19

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