*** zenoway has joined #openstack-dragonflow | 00:23 | |
*** gongysh has joined #openstack-dragonflow | 01:08 | |
openstackgerrit | Merged openstack/dragonflow: change dragonflow apps to use mod_flow instead of ryu's OFPFlowMod https://review.openstack.org/304050 | 01:12 |
---|---|---|
openstackgerrit | Li Ma proposed openstack/dragonflow: Fix event names of db https://review.openstack.org/304618 | 01:21 |
*** yamamot__ has joined #openstack-dragonflow | 02:00 | |
*** yamamoto has quit IRC | 02:03 | |
openstackgerrit | heshan proposed openstack/dragonflow: code for local controller reliability https://review.openstack.org/292060 | 02:11 |
openstackgerrit | heshan proposed openstack/dragonflow: remove redundant comma(',') from table_id and cookie https://review.openstack.org/304458 | 02:15 |
openstackgerrit | heshan proposed openstack/dragonflow: add check_controller() and set_controller_fail_mode() to vswitch_api https://review.openstack.org/304026 | 03:04 |
hshan | Had anyone got the same 'icmp_ping_pong' test failed? | 03:12 |
hshan | the details is: | 03:12 |
hshan | 2016-04-12 08:21:19.124 | 2016-04-12 08:21:19.102 | ============================== | 03:12 |
hshan | 2016-04-12 08:21:19.126 | 2016-04-12 08:21:19.104 | Failed 1 tests - output below: | 03:12 |
hshan | 2016-04-12 08:21:19.128 | 2016-04-12 08:21:19.106 | ============================== | 03:12 |
hshan | 2016-04-12 08:21:19.130 | 2016-04-12 08:21:19.108 | | 03:12 |
hshan | 2016-04-12 08:21:19.132 | 2016-04-12 08:21:19.110 | dragonflow.tests.fullstack.test_apps.TestL3App.test_icmp_ping_pong | 03:12 |
hshan | 2016-04-12 08:21:19.134 | 2016-04-12 08:21:19.112 | ------------------------------------------------------------------ | 03:12 |
hshan | 2016-04-12 08:21:19.136 | 2016-04-12 08:21:19.113 | | 03:12 |
hshan | 2016-04-12 08:21:19.138 | 2016-04-12 08:21:19.116 | Captured traceback: | 03:12 |
hshan | 2016-04-12 08:21:19.140 | 2016-04-12 08:21:19.118 | ~~~~~~~~~~~~~~~~~~~ | 03:12 |
hshan | 2016-04-12 08:21:19.143 | 2016-04-12 08:21:19.120 | Traceback (most recent call last): | 03:12 |
hshan | 2016-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_pong | 03:13 |
hshan | 2016-04-12 08:21:19.153 | 2016-04-12 08:21:19.124 | self.policy.wait(30) | 03:13 |
*** yamamot__ has quit IRC | 03:20 | |
*** yamamot__ has joined #openstack-dragonflow | 03:21 | |
*** yamamot__ has quit IRC | 03:26 | |
*** yamamot__ has joined #openstack-dragonflow | 04:04 | |
*** oanson has joined #openstack-dragonflow | 05:14 | |
*** mestery has quit IRC | 05:17 | |
*** mestery has joined #openstack-dragonflow | 05:23 | |
*** yamamot__ has quit IRC | 05:28 | |
*** yamamot__ has joined #openstack-dragonflow | 05:29 | |
*** yamamo___ has joined #openstack-dragonflow | 05:34 | |
*** yamamot__ has quit IRC | 05:36 | |
*** WANGFeng has joined #openstack-dragonflow | 05:59 | |
openstackgerrit | Li Ma proposed openstack/dragonflow: Fix event names of db https://review.openstack.org/304618 | 06:04 |
*** yamamo___ has quit IRC | 06:10 | |
*** yamamot__ has joined #openstack-dragonflow | 06:11 | |
gampel | yuanwei: ping | 06:15 |
gampel | Shlomo: did you get it to work yesterday ? | 06:16 |
openstackgerrit | Merged openstack/dragonflow: Add topic to the list as test and only once https://review.openstack.org/304580 | 06:17 |
hshan | oanson, gsagie: have you see my update? | 06:18 |
oanson | hshan, I am looking at it now | 06:19 |
hshan | ok, tell me if you got any problem | 06:19 |
gampel | hshan: do you know whats the status of the SG patch ? | 06:20 |
*** yuanwei has joined #openstack-dragonflow | 06:20 | |
hshan | gampel: a moment | 06:23 |
hshan | yuanwei is here | 06:24 |
yuanwei | Hi, i'm here | 06:24 |
hshan | oanson: I see your comments, what about we modify it to: | 06:24 |
hshan | if 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 = True | 06:24 |
oanson | hshan, I was thinking maybe loop over the controllers, until we find one that we want | 06:25 |
oanson | i.e. a controller where .target == target. | 06:26 |
oanson | If there are no controllers, I think br_int.controller will be an empty list | 06:26 |
hshan | oh, I got you | 06:26 |
hshan | 1 sec | 06:27 |
*** hujie has joined #openstack-dragonflow | 06:28 | |
yuanwei | gampel: The bug about two SG records in lport I fixed and test locally. I will upload a patch to commit that modification. | 06:28 |
hshan | oanson: what about this: | 06:32 |
hshan | def check_controller(self, target): | 06:32 |
hshan | is_controller_set = False | 06: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 = True | 06:32 |
hshan | return is_controller_set | 06:32 |
*** yuli_s has joined #openstack-dragonflow | 06:33 | |
oanson | hshan, this won't work. br_int.controller contains controllers. target is a host/port string | 06:34 |
*** WANGFeng has quit IRC | 06:38 | |
hshan | oanson, I'm making experiment locally, I'll give you the result in a moment | 06:40 |
hujie | br-int.controller is just a uuid of controller table entry | 06:43 |
oanson | hujie, yes, but the IDL turns it into a reference | 06:43 |
yuli_s | Hello | 06:44 |
yuli_s | regarding the fix for the 'update' action | 06:44 |
yuli_s | nick-ma, fixed this bug got the ovsinterface table | 06:44 |
hshan | oanson: yes, I understand what you mean, we cannot do this: target in br_int.controller | 06:44 |
yuli_s | we are getting updates for other tbales as well | 06:44 |
yuli_s | I can fix it when we handle events as suggested here | 06:45 |
hshan | oanson: but I'm thinking about is there a way to specify more than one controller to OVS? | 06:45 |
yuli_s | https://review.openstack.org/#/c/304152/3/dragonflow/db/api_nb.py | 06:45 |
hujie | if you want to get the target you can search from the controller table by controller-uuid | 06:45 |
oanson | gsagie, ping | 06:45 |
yuli_s | and revert the change of mali | 06:45 |
yuli_s | or I can fix it when we send updates for other tables | 06:46 |
yuli_s | in: _send_db_change_event() | 06:46 |
oanson | hshan, I think so, but I want to verify. Maybe gsagie knows. | 06:46 |
yuli_s | file: dragonflow/db/api_nb.py | 06:46 |
yuli_s | change : 'update' action to 'set' action | 06:46 |
gsagie | hshan: yes, you can set multipile controllers | 06:46 |
gsagie | multiple | 06:47 |
hshan | oanson, gsagie: I remembered I've done that before | 06:47 |
hujie | br-int.controller is a list | 06:47 |
gsagie | OpenFlow support multi controllers | 06:47 |
hujie | multi-controller of course | 06:47 |
gsagie | yes , you have a Controller table which can have few entries | 06:47 |
gsagie | and then each bridge has a list of controllers entries | 06:47 |
hujie | but master is only one, others may be slave | 06:48 |
hshan | hujie: yes | 06:48 |
hshan | it 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 |
hujie | yes | 06:49 |
hshan | then I can got: | 06:49 |
hshan | stack@PEK1000038004:~/dragonflow/dragonflow$ ovs-vsctl show | 06:49 |
hshan | 398d9775-89a2-4791-b054-2f7d08407ffa | 06:49 |
hshan | Bridge br-int | 06:49 |
hshan | Controller "tcp:10.178.128.149:6633" | 06:49 |
hshan | Controller "tcp:10.178.1.1:6633" | 06:49 |
hshan | fail_mode: secure | 06:49 |
hshan | okay, I'm making experiment base on this | 06:50 |
gsagie | But we currently dont have this support in Dragonflow (yet) | 06:50 |
hshan | so.. | 06:50 |
gsagie | also it doesnt have to be master/slave | 06:50 |
hujie | yes in dragonflow only one controller | 06:50 |
gsagie | there are "Equal" state as well in OF, but why do you need this? | 06:50 |
oanson | hshan, you can also use ovsdb-client to see the OVS database. e.g. ovsdb-client dump | 06:50 |
hujie | no cluster @@ | 06:50 |
hshan | oanson: I've done that | 06:51 |
hujie | yes if you only one controller, the role will be equal | 06:51 |
hujie | it has the same meaning with master role for unique controller node | 06:51 |
hshan | gsagie: I and oanson are considering about why we need to modify the check_controller_is_set() interface to adapt to this situation | 06:52 |
hshan | typo:are we need to | 06:52 |
hshan | typo:do we need | 06:52 |
oanson | gsagie, check_controller_is_set currently assumes that there is only one controller. I wanted to verify this. | 06:53 |
oanson | *we | 06:53 |
hshan | gsagie: from this patch: https://review.openstack.org/#/c/304026/ | 06:53 |
gsagie | sec let me look | 06:54 |
hshan | ok | 06:54 |
gsagie | well, 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 controllers | 06:55 |
gsagie | and check it | 06:55 |
gsagie | hshan, you need help with that? | 06:55 |
hshan | just need all of your's review:) | 06:56 |
openstackgerrit | Yuli proposed openstack/dragonflow: Fix empty ofport value https://review.openstack.org/304152 | 06:56 |
gsagie | hshan: np, i tried your patch yesterday, eveyrthing worked when i didnt use the aging app | 06:56 |
gsagie | now i am trying when its enabled | 06:56 |
hshan | don't forget to add aging.Aging to the app_list :) | 06:57 |
gsagie | i think we must enable it by default as if its not it means flows are not deleted on controller restart | 06:57 |
gsagie | hshan: yeah thats what i talked about, i first tried it when its not on the app list, now trying when its in the app list | 06:57 |
hshan | yes, agree | 06:58 |
*** hujie has quit IRC | 06:58 | |
*** hujie has joined #openstack-dragonflow | 07:02 | |
*** zenoway has quit IRC | 07:03 | |
*** zenoway has joined #openstack-dragonflow | 07:04 | |
*** omnipresent has joined #openstack-dragonflow | 07:05 | |
*** omnipresent has quit IRC | 07:06 | |
*** omnipresent has joined #openstack-dragonflow | 07:07 | |
*** zenoway has quit IRC | 07:09 | |
*** omnipresent has quit IRC | 07:11 | |
openstackgerrit | Merged openstack/dragonflow: Fix event names of db https://review.openstack.org/304618 | 07:26 |
hshan | gampel: I rephrased the comment, please help to review it here, thx: | 07:37 |
hshan | global 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 |
openstackgerrit | yuan wei proposed openstack/dragonflow: This patch implements security group app https://review.openstack.org/280538 | 07:39 |
openstackgerrit | Merged openstack/dragonflow: Mitaka Version Features Update https://review.openstack.org/303825 | 07:41 |
openstackgerrit | heshan proposed openstack/dragonflow: code for local controller reliability https://review.openstack.org/292060 | 07:44 |
openstackgerrit | yuan wei proposed openstack/dragonflow: This patch implements security group app https://review.openstack.org/280538 | 07:46 |
openstackgerrit | Yuli proposed openstack/dragonflow: Fix empty ofport value https://review.openstack.org/304152 | 07:50 |
*** zenoway has joined #openstack-dragonflow | 07:51 | |
*** omnipresent has joined #openstack-dragonflow | 07:52 | |
openstackgerrit | yuan wei proposed openstack/dragonflow: This patch implements security group app https://review.openstack.org/280538 | 07:52 |
yuli_s | mali, your patch is not full | 07:55 |
yuli_s | 2016-04-13 10:54:48.190 WARNING dragonflow.db.api_nb [-] Unknown action update for table publisher | 07:55 |
yuli_s | i got the latest code | 07:55 |
yuli_s | nick-ma, | 07:56 |
*** zenoway has quit IRC | 07:56 | |
yuli_s | nick-ma, I am still get 'update' event with your patch | 07:57 |
gsagie | yuli_s: do you use https://review.openstack.org/#/c/304618/ | 07:59 |
gsagie | it just got merged ~30 minutes ago | 08:00 |
yuli_s | gsagie, absolutely | 08:04 |
yuli_s | shlomo@ubuntu:/opt/stack/dragonflow$ git pull | 08:04 |
yuli_s | Already up-to-date. | 08:04 |
yuli_s | shlomo@ubuntu:/opt/stack/dragonflow$ git branch | 08:04 |
yuli_s | * master | 08:04 |
yuli_s | raofei, u arround ? | 08:05 |
gsagie | yuli_s: yes i still see 'update' in recent code, i will send a fix | 08:08 |
raofei | hi yuli | 08:09 |
yuli_s | raofei, the dnat code does not work very good with the security group patch | 08:12 |
*** gongysh has quit IRC | 08:12 | |
yuli_s | if you have some time | 08:13 |
yuli_s | please apply this patch and check https://review.openstack.org/#/c/280538/ | 08:13 |
yuli_s | thanks ! | 08:13 |
openstackgerrit | Gal Sagie proposed openstack/dragonflow: Remove last leftovers of 'update' https://review.openstack.org/305038 | 08:23 |
yuli_s | gsagie, https://review.openstack.org/#/c/305038/1/dragonflow/db/drivers/ovsdb_vswitch_impl.py i am not sure that this is right here | 08:28 |
raofei | ok, will do | 08:33 |
*** todin has joined #openstack-dragonflow | 08:35 | |
openstackgerrit | yuan wei proposed openstack/dragonflow: Impliment security group fullstack and ut cases https://review.openstack.org/299105 | 08:35 |
gsagie | yuli_s: why not? | 08:41 |
yuli_s | yuanwei, hello | 08:43 |
yuli_s | yuanwei, the problem with double fields for security groups still exists ! | 08:43 |
yuli_s | see my comments here: https://review.openstack.org/#/c/280538/21 | 08:43 |
yuli_s | gsagie, it was for ovsinterface table i think | 08:44 |
gsagie | yuli_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 |
gsagie | so why do we need to convert it to 'set' | 08:47 |
gsagie | i can keep this line, i just think its not really needed | 08:47 |
gsagie | with latest code | 08:47 |
yuli_s | talk with nick-ma about it ;) | 08:48 |
gsagie | yuli_s: 好吧,我會 | 08:49 |
yuli_s | yuanwei, i just saw your comments to the bug, let me read them again | 08:51 |
gsagie | yuanwei: hi, are you here? | 08:56 |
gsagie | regarding 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 |
gsagie | yuli_s: i see in latests patch | 08:58 |
gsagie | that yuanwei fixed this issue | 08:58 |
gsagie | look at plugin.py | 08:58 |
gsagie | https://review.openstack.org/#/c/280538/ | 08:59 |
yuanwei | I'm upload this fix to the new patch | 08:59 |
gsagie | yeah just saw, but when port is created sgids are always None? | 08:59 |
gsagie | cant it be that we get sgids when port is created? | 08:59 |
openstackgerrit | yuan wei proposed openstack/dragonflow: Impliment security group fullstack and ut cases https://review.openstack.org/299105 | 09:00 |
gsagie | i think you need to use _get_security_groups_on_port | 09:01 |
nick-ma | yuli_s: what's up? | 09:01 |
gsagie | nick-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 notify | 09:02 |
gsagie | which convert 'update' to 'set' | 09:02 |
gsagie | he wanted to make sure you agree | 09:02 |
nick-ma | ok, i see. | 09:02 |
openstackgerrit | yuan wei proposed openstack/dragonflow: This patch implements security group app https://review.openstack.org/280538 | 09:10 |
*** omnipresent has quit IRC | 09:10 | |
*** zenoway has joined #openstack-dragonflow | 09:11 | |
oanson | yuanwei, I am looking at the errors gampel mentioned. | 09:12 |
*** omnipresent has joined #openstack-dragonflow | 09:12 | |
oanson | It looks like OVS is rejecting the flows with ct_state as have bad mask. | 09:12 |
oanson | I looked at the command and the documentation, and couldn't find anything wrong. | 09:13 |
oanson | So 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 IRC | 09:13 | |
*** omnipresent has joined #openstack-dragonflow | 09:14 | |
oanson | yuanwei: ping | 09:14 |
*** zenoway has quit IRC | 09:16 | |
yuanwei | pong | 09:17 |
*** omnipresent has quit IRC | 09:18 | |
oanson | Hi | 09:18 |
oanson | Did you see my question above? | 09:18 |
yuanwei | just saw.. | 09:18 |
oanson | yuanwei, I also tested it on another server, and the command works. So it's very strange | 09:19 |
oanson | I was wondering if you ran into this behaviour? | 09:19 |
openstackgerrit | Merged openstack/dragonflow: Fix empty ofport value https://review.openstack.org/304152 | 09:20 |
yuanwei | I don't remember I have some extra configuration on OVS | 09:20 |
oanson | As I said - very strange. :) | 09:22 |
gsagie | yuanwei: you use Ubuntu right? | 09:22 |
yuanwei | yes, ubuntu 14 | 09:23 |
oanson | Both my systems (working and non-working) are fedora... | 09:24 |
yuanwei | after running stack.sh, OVS will be reinstalled, and all old configurations in OVS will be clear? | 09:26 |
oanson | I am now testing that | 09:27 |
oanson | stack.sh just takes a bit of time :) | 09:27 |
*** irenab_ has joined #openstack-dragonflow | 09:38 | |
*** kun_huang_ has joined #openstack-dragonflow | 09:40 | |
*** mestery_ has joined #openstack-dragonflow | 09:40 | |
yuanwei | yuli_s: Hi, about the double fields bug, just make sure that you restarted the neutron-server after update the codes? | 09:44 |
yuanwei | yuli_s: ping | 09:45 |
*** mestery has quit IRC | 09:47 | |
*** irenab has quit IRC | 09:47 | |
*** kun_huang has quit IRC | 09:47 | |
*** mestery_ is now known as mestery | 09:47 | |
*** irenab_ is now known as irenab | 09:47 | |
*** kun_huang_ is now known as kun_huang | 09:49 | |
*** zenoway has joined #openstack-dragonflow | 10:02 | |
*** zenoway has quit IRC | 10:19 | |
*** yamamot__ has quit IRC | 10:25 | |
*** openstack has joined #openstack-dragonflow | 11:33 | |
*** openstackgerrit has quit IRC | 11:35 | |
*** gampel has quit IRC | 11:35 | |
*** liuhaixia has quit IRC | 11:35 | |
*** hujie has quit IRC | 11:35 | |
*** gampel has joined #openstack-dragonflow | 11:36 | |
*** oanson has quit IRC | 11:37 | |
*** zenoway has joined #openstack-dragonflow | 11:49 | |
*** oanson has joined #openstack-dragonflow | 11:49 | |
*** zenoway has quit IRC | 11:49 | |
*** zenoway has joined #openstack-dragonflow | 11:49 | |
*** openstackgerrit has joined #openstack-dragonflow | 11:51 | |
*** zenoway has quit IRC | 11:56 | |
*** zenoway has joined #openstack-dragonflow | 11:57 | |
*** yamamoto has joined #openstack-dragonflow | 12:14 | |
*** yuanwei has left #openstack-dragonflow | 12:25 | |
*** zenoway has quit IRC | 12:26 | |
*** zenoway has joined #openstack-dragonflow | 12:27 | |
*** omnipresent has joined #openstack-dragonflow | 12:28 | |
*** omnipresent has quit IRC | 12:29 | |
*** omnipresent has joined #openstack-dragonflow | 12:29 | |
*** omnipresent has quit IRC | 12:30 | |
*** omnipresent has joined #openstack-dragonflow | 12:30 | |
*** yamamoto has quit IRC | 12:31 | |
*** zenoway has quit IRC | 12:32 | |
*** omnipresent has quit IRC | 12:35 | |
openstackgerrit | Eran Gampel proposed openstack/dragonflow: Enable back pub-sub topic test https://review.openstack.org/305209 | 12:52 |
*** yamamoto has joined #openstack-dragonflow | 13:02 | |
*** yuanwei has joined #openstack-dragonflow | 13:03 | |
openstackgerrit | yuan wei proposed openstack/dragonflow: Impliment security group fullstack and ut cases https://review.openstack.org/299105 | 13:12 |
*** zenoway has joined #openstack-dragonflow | 13:12 | |
*** zenoway has quit IRC | 13:17 | |
*** zenoway has joined #openstack-dragonflow | 13:21 | |
*** zenoway has quit IRC | 13:25 | |
*** yuanwei has quit IRC | 13:31 | |
openstackgerrit | Merged openstack/dragonflow: Remove last leftovers of 'update' https://review.openstack.org/305038 | 13:34 |
yuli_s | raofei, looks like i detected a problem | 13:34 |
openstackgerrit | Merged openstack/dragonflow: add check_controller() and set_controller_fail_mode() to vswitch_api https://review.openstack.org/304026 | 13:34 |
yuli_s | when DNAT is enabled, in table=15 you send packets directly in port | 13:35 |
yuli_s | for 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:17 | 13:35 |
yuli_s | it does not passes the fw rules, | 13:35 |
yuli_s | my test is the following: I am conenecting from host to vm using the flowing IP address | 13:36 |
*** CrayZee1 has joined #openstack-dragonflow | 13:37 | |
gsagie | good catch yuli_s! | 13:39 |
gsagie | however, security app patch is not yet merged, so i think yuanwei need to update DNAT app for that | 13:40 |
yuli_s | i just opened a bug: https://bugs.launchpad.net/dragonflow/+bug/1569903 | 13:43 |
openstack | Launchpad bug 1569903 in DragonFlow "Connection to FIP does not passes firewall" [Undecided,New] | 13:43 |
*** oanson has quit IRC | 13:43 | |
*** CrayZee has quit IRC | 13:43 | |
gsagie | There is no need to open a bug | 13:47 |
gsagie | you are opening a bug on a code that is not yet merged.. | 13:47 |
gsagie | you can write it in the review and add -1 | 13:48 |
*** yuanwei has joined #openstack-dragonflow | 13:49 | |
*** zenoway has joined #openstack-dragonflow | 13:55 | |
*** zenoway has quit IRC | 13:55 | |
*** zenoway has joined #openstack-dragonflow | 13:56 | |
*** zenoway has quit IRC | 14:01 | |
*** zenoway has joined #openstack-dragonflow | 14:11 | |
*** zenoway has quit IRC | 14:15 | |
*** zenoway has joined #openstack-dragonflow | 14:18 | |
openstackgerrit | Gal Sagie proposed openstack/dragonflow: allow packet data to be passed as bytearray to applicative tests https://review.openstack.org/305131 | 14:22 |
*** zenoway has quit IRC | 14:23 | |
*** zenoway has joined #openstack-dragonflow | 14:23 | |
openstackgerrit | Merged openstack/dragonflow: remove redundant comma(',') from table_id and cookie https://review.openstack.org/304458 | 14:24 |
*** yuanwei has quit IRC | 14:37 | |
openstackgerrit | Merged openstack/dragonflow: Enable back pub-sub topic test https://review.openstack.org/305209 | 14:49 |
*** yuli_s has quit IRC | 14:55 | |
*** zenoway has quit IRC | 15:08 | |
*** yuanwei has joined #openstack-dragonflow | 15:36 | |
yuanwei | gampel: Hi, Eran, I replied in that patch https://review.openstack.org/#/c/280538/22 | 15:37 |
*** zenoway has joined #openstack-dragonflow | 15:38 | |
*** openstack has joined #openstack-dragonflow | 16:10 | |
*** zenoway has quit IRC | 16:13 | |
*** omnipresent has joined #openstack-dragonflow | 16:29 | |
*** omnipresent has quit IRC | 16:59 | |
*** zenoway has joined #openstack-dragonflow | 17:00 | |
*** omnipresent has joined #openstack-dragonflow | 17:01 | |
*** omnipresent has quit IRC | 17:01 | |
*** omnipresent has joined #openstack-dragonflow | 17:02 | |
*** zenoway_ has joined #openstack-dragonflow | 17:03 | |
*** hujie has joined #openstack-dragonflow | 17:03 | |
*** zenoway_ has quit IRC | 17:03 | |
*** zenoway_ has joined #openstack-dragonflow | 17:04 | |
*** zenoway has quit IRC | 17:04 | |
*** zenoway has joined #openstack-dragonflow | 17:05 | |
*** zenoway has quit IRC | 17:05 | |
*** zenoway has joined #openstack-dragonflow | 17:06 | |
*** zenoway has quit IRC | 17:06 | |
*** omnipresent has quit IRC | 17:06 | |
*** zenoway has joined #openstack-dragonflow | 17:06 | |
*** zenoway has quit IRC | 17:07 | |
*** zenoway has joined #openstack-dragonflow | 17:08 | |
*** zenoway_ has quit IRC | 17:08 | |
*** zenoway has quit IRC | 17:08 | |
*** zenoway has joined #openstack-dragonflow | 17:09 | |
*** zenoway has quit IRC | 17:09 | |
*** zenoway has joined #openstack-dragonflow | 17:10 | |
*** omnipresent has joined #openstack-dragonflow | 17:11 | |
*** omnipresent has quit IRC | 17:11 | |
*** omnipresent has joined #openstack-dragonflow | 17:12 | |
*** zenoway_ has joined #openstack-dragonflow | 17:13 | |
*** zenoway has quit IRC | 17:14 | |
*** zenoway_ has quit IRC | 17:14 | |
*** zenoway has joined #openstack-dragonflow | 17:14 | |
*** omnipresent has quit IRC | 17:16 | |
*** zenoway has quit IRC | 17:19 | |
*** zenoway has joined #openstack-dragonflow | 17:37 | |
*** zenoway has quit IRC | 17:41 | |
openstackgerrit | Merged openstack/dragonflow: Updated from global requirements https://review.openstack.org/305178 | 17:43 |
*** zenoway has joined #openstack-dragonflow | 18:00 | |
*** omnipresent has joined #openstack-dragonflow | 18:02 | |
*** omnipresent has quit IRC | 18:03 | |
*** omnipresent has joined #openstack-dragonflow | 18:04 | |
*** zenoway has quit IRC | 18:04 | |
*** omnipresent has quit IRC | 18:06 | |
*** zenoway has joined #openstack-dragonflow | 18:09 | |
*** zenoway has quit IRC | 18:14 | |
*** zenoway has joined #openstack-dragonflow | 18:14 | |
*** zenoway has quit IRC | 18:15 | |
*** zenoway has joined #openstack-dragonflow | 18:15 | |
*** zenoway has quit IRC | 18:17 | |
*** zenoway has joined #openstack-dragonflow | 18:18 | |
*** zenoway has quit IRC | 18:23 | |
*** zenoway has joined #openstack-dragonflow | 18:27 | |
*** zenoway has quit IRC | 18:32 | |
*** CrayZee1 has quit IRC | 18:38 | |
*** zenoway has joined #openstack-dragonflow | 18:38 | |
*** todin has quit IRC | 18:39 | |
*** CrayZee has joined #openstack-dragonflow | 18:39 | |
*** yamamoto has quit IRC | 18:39 | |
*** openstackgerrit has quit IRC | 18:39 | |
*** todin has joined #openstack-dragonflow | 18:41 | |
*** raofei has quit IRC | 18:41 | |
*** zenoway has quit IRC | 18:43 | |
*** zenoway has joined #openstack-dragonflow | 18:49 | |
*** zenoway has quit IRC | 18:54 | |
*** openstackgerrit has joined #openstack-dragonflow | 18:56 | |
*** raofei has joined #openstack-dragonflow | 19:13 | |
*** yamamoto has joined #openstack-dragonflow | 19:40 | |
*** yamamoto has quit IRC | 19:47 | |
*** CrayZee has quit IRC | 19:48 | |
*** Mic22 has quit IRC | 19:48 | |
*** CrayZee has joined #openstack-dragonflow | 19:57 | |
*** Mic22 has joined #openstack-dragonflow | 19:57 | |
*** CrayZee has quit IRC | 20:04 | |
*** Mic22 has quit IRC | 20:04 | |
*** CrayZee1 has joined #openstack-dragonflow | 20:10 | |
*** CrayZee has joined #openstack-dragonflow | 20:11 | |
*** Mic22 has joined #openstack-dragonflow | 20:11 | |
*** CrayZee has quit IRC | 20:11 | |
*** Mic22 has quit IRC | 20:15 | |
*** Mic22 has joined #openstack-dragonflow | 20:16 | |
*** CrayZee has joined #openstack-dragonflow | 20:41 | |
*** CrayZee1 has quit IRC | 20:47 | |
*** saggi1 has joined #openstack-dragonflow | 21:14 | |
*** saggi1 has quit IRC | 21:14 | |
*** saggi1 has joined #openstack-dragonflow | 21:15 | |
*** saggi1 has quit IRC | 21:19 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!