*** Qiming_ has joined #openstack-zaqar | 01:03 | |
*** VeggieMeat_ has joined #openstack-zaqar | 02:08 | |
*** dguerria has joined #openstack-zaqar | 02:13 | |
*** kgriffsl has joined #openstack-zaqar | 02:13 | |
*** dguerria is now known as dguerri | 02:13 | |
*** dguerri has quit IRC | 02:13 | |
*** dguerri has joined #openstack-zaqar | 02:13 | |
*** kgriffsl is now known as kgriffs | 02:14 | |
*** flwang1 has quit IRC | 02:15 | |
*** flwang has quit IRC | 02:15 | |
*** dguerri` has quit IRC | 02:15 | |
*** kgriffs|afk has quit IRC | 02:15 | |
*** VeggieMeat has quit IRC | 02:15 | |
*** flaper87 has quit IRC | 02:15 | |
*** flaper87 has joined #openstack-zaqar | 02:18 | |
*** flwang has joined #openstack-zaqar | 02:24 | |
*** flwang1 has joined #openstack-zaqar | 02:25 | |
*** david-lyle has joined #openstack-zaqar | 03:06 | |
*** Qiming__ has joined #openstack-zaqar | 03:07 | |
*** Qiming_ has quit IRC | 03:07 | |
*** vkmc has quit IRC | 03:08 | |
*** david-ly_ has quit IRC | 03:08 | |
*** vkmc has joined #openstack-zaqar | 03:14 | |
*** Qiming__ has quit IRC | 03:44 | |
openstackgerrit | Fei Long Wang proposed openstack/zaqar: Fix wrong query for pools when creating queue https://review.openstack.org/220849 | 03:52 |
---|---|---|
openstackgerrit | Fei Long Wang proposed openstack/zaqar: Rename pool to pool_group for flavor https://review.openstack.org/220876 | 03:53 |
*** flwang1 has quit IRC | 05:04 | |
*** Qiming__ has joined #openstack-zaqar | 05:23 | |
*** diga has joined #openstack-zaqar | 05:44 | |
*** flaper87 has quit IRC | 06:30 | |
*** flaper87 has joined #openstack-zaqar | 06:30 | |
*** Caleb-- has quit IRC | 08:00 | |
*** Caleb-- has joined #openstack-zaqar | 08:12 | |
*** flwang1 has joined #openstack-zaqar | 09:07 | |
flwang1 | flaper87: morning | 09:09 |
flaper87 | flwang1: hello, sir! | 09:10 |
flaper87 | flwang1: hope you had a great weekend | 09:10 |
flaper87 | flwang1: if you're in the mood for reviews: https://review.openstack.org/#/c/218430/ | 09:10 |
flwang1 | flaper87: yep, just delivered a session of zaqar at kiwi pycon | 09:10 |
flwang1 | flaper87: sure, i'm in the zaqar mode | 09:10 |
flaper87 | flwang1: AWESOME! How was it? | 09:12 |
flaper87 | Any feedback? | 09:12 |
flwang1 | not too much audience, TBH, just a question from Steve Baker | 09:13 |
openstackgerrit | Merged openstack/zaqar: Fix accurate links in README.rst https://review.openstack.org/220588 | 09:16 |
openstackgerrit | Merged openstack/zaqar: Refactoring to make Websocket driver available in v2 https://review.openstack.org/218430 | 09:25 |
flwang1 | flaper87: just addressed your question in https://review.openstack.org/#/c/220849/ | 09:26 |
flaper87 | flwang1: awesome, I'll get to it soon | 09:29 |
* flaper87 is trying to understand why Zaqar's gate doesn't log anything | 09:29 | |
flwang1 | flaper87: for which gate? the rally one? | 09:30 |
openstackgerrit | Flavio Percoco proposed openstack/zaqar: WIP: Fix logging in Zaqar's gate https://review.openstack.org/220928 | 09:30 |
flaper87 | flwang1: all gates. If you look at the screen-zaqar logs, there's nothing there | 09:31 |
flaper87 | But Zaqar's config file is in debug mode | 09:31 |
flwang1 | flaper87: weird | 09:31 |
flwang1 | flaper87: btw, i'm review the code of flavor and i'm reading this line https://github.com/openstack/zaqar/blob/master/zaqar/storage/pooling.py#L181 | 09:32 |
flwang1 | flavor = metadata and metadata.get('_flavor', None) | 09:32 |
flwang1 | so may i know we use '_flavor' as the key for flavor in metadata? do we have any naming rule for the reserved key in metadata? | 09:33 |
flaper87 | flwang1: kinda, the idea was to mark that key as "private" but I guess we could change that | 09:34 |
flwang1 | i'm going to add a 'token' key for email's subscription options, so that no spam for the unconfirmed subscriber | 09:34 |
flaper87 | flwang1: the main thing to keep in mind is that: Once the falvor is set, it cannot be changed | 09:34 |
flaper87 | to change it, a new queue needs to be created | 09:34 |
flaper87 | flavor migration will be implemented later | 09:34 |
flwang1 | flaper87: if so, i think we need to document this naming rule in our developer document and end user doc | 09:37 |
flwang1 | i'm good with _key :) | 09:38 |
flwang1 | so i'm going to add a _token key in email subscription's 'options', which will contains {'expired_time': '2015-09-08 12:34:67', 'confirmed': False} | 09:39 |
flwang1 | and we may need a small hacking for the endpoint GET /subscriptions/<sub_id> to support GET /subscriptions/<sub_id>?token=<UUID> to confirm the email subscription | 09:42 |
flwang1 | flaper87: does that make sense? | 09:42 |
flaper87 | flwang1: mmh, could you elaborate on what you need the token for? | 09:44 |
flaper87 | How's the token going to be generated? | 09:44 |
flwang1 | the token will be UUID generated by uuid lib | 09:45 |
flwang1 | after subscribed, the email address will receive an email with a link | 09:46 |
flaper87 | flwang1: ahh, nvm. I understand what you want to do now | 09:46 |
flaper87 | flwang1: should we do that in Mitaka? | 09:46 |
flwang1 | after click the link, the subscription will be activated/enabled from then | 09:46 |
flwang1 | flaper87: yep, sure. | 09:47 |
flaper87 | flwang1: I think it's useful but I think we should reduce the feature to the minimum in Liberty | 09:47 |
flaper87 | we can expand it in Mitaka | 09:47 |
flwang1 | flaper87: no problem | 09:47 |
flaper87 | That being said, I think it's a good thing to have | 09:47 |
flaper87 | flwang1: likely spec worthy | 09:47 |
flwang1 | flaper87: ok, i will open a blueprint to track it | 09:48 |
openstackgerrit | Thomas Herve proposed openstack/zaqar: Notifications over websocket https://review.openstack.org/206080 | 10:01 |
openstackgerrit | Flavio Percoco proposed openstack/zaqar: WIP: Fix logging in Zaqar's gate https://review.openstack.org/220928 | 10:03 |
therve | flwang1, I'm a bit dubious on the fact that this confirmation API ought to be in zaqar | 10:03 |
flaper87 | therve: I kinda think it's a nice, optional, thing to have | 10:04 |
flaper87 | but I'd assume that if I've authenticated to keystone and subscribed an email, I should be trusted as a source thus the confirmation shouldn't be needed | 10:05 |
therve | flaper87, I don't know, not sure going into an email service is the best way forward | 10:05 |
therve | It also crosses abstractions barriers, which always suspicious | 10:06 |
therve | (subscriptions are generic, but confirmation are pretty much email specific) | 10:06 |
flwang1 | therve: i can see your point | 10:06 |
flwang1 | but my concern is from a cloud provider view | 10:06 |
flaper87 | flwang1: https://bugs.launchpad.net/zaqar/+bug/1489879 didn't you have a patch for that? | 10:07 |
openstack | Launchpad bug 1489879 in zaqar "Got 500 error when addding new mongodb pool" [Low,Triaged] - Assigned to Fei Long Wang (flwang) | 10:07 |
flwang1 | as a public cloud provider, the tenant may use this service to send spam | 10:07 |
therve | I'm not arguing the usefulness of the feature | 10:07 |
therve | I'm arguing against it being in zaqar | 10:08 |
flwang1 | flaper87: not yet, but i can do it soon :) | 10:09 |
flwang1 | therve: i see, but IIRC, SNS has the same feature | 10:09 |
flaper87 | flwang1: no need, I just seemed to remember there was one | 10:10 |
flaper87 | flwang1: yes, it does. | 10:10 |
flwang1 | flaper87: got | 10:10 |
flaper87 | therve: where would you have it instead? | 10:10 |
therve | flwang, SNS has a dedicated confirm API though, not a hack on GET subscriptions | 10:11 |
therve | flaper87, Another service | 10:11 |
therve | I feel that even the webhook implementation ought to be separate | 10:11 |
therve | Zaqar's one is very fragile and needs lots of work | 10:12 |
flwang1 | therve: oh, hacking GET just my init thought, we can define a good one for sure | 10:12 |
therve | Like, doesn't mistral allows sending email? | 10:12 |
flaper87 | therve: but wait, webhook and emails are just plugins for the notification API which is part of Zaqar | 10:15 |
flaper87 | not sure why you think those don't belong in Zaqar | 10:15 |
therve | Mostly because they are a full time job by themselves | 10:16 |
flaper87 | (brb, lunch, but we'll talk a bit more about this later today if you're around) | 10:18 |
therve | Sure thing | 10:19 |
*** diga has quit IRC | 10:20 | |
*** Qiming__ has quit IRC | 10:53 | |
*** flwang1 has quit IRC | 11:08 | |
*** flwang1 has joined #openstack-zaqar | 11:11 | |
*** flwang1 has quit IRC | 11:18 | |
*** flwang1 has joined #openstack-zaqar | 11:22 | |
openstackgerrit | Flavio Percoco proposed openstack/zaqar: WIP: Fix logging in Zaqar's gate https://review.openstack.org/220928 | 11:35 |
flwang1 | flaper87: back? | 11:37 |
flaper87 | flwang1: yes | 11:39 |
flwang1 | flaper87: a quick question, why are we keeping the tenant id in flavor? | 11:39 |
flwang1 | IMHO, flavor should be a global resource like pool | 11:40 |
flwang1 | that said, it doesn't belong any tenant technically | 11:40 |
flaper87 | flwang1: I was wondering the same the other day while I was implementing the sqlalchemy thing | 11:41 |
flaper87 | and I believe I had an answer for that | 11:41 |
flaper87 | I don't remember anymore | 11:41 |
flaper87 | :P | 11:41 |
flwang1 | flaper87: ok, i believe there's an answer :D | 11:42 |
flaper87 | I believe the reason behind that is that an admin may want to create a flavor that is just visible by one tenant | 11:42 |
flaper87 | for billing porpuses | 11:43 |
flaper87 | but I'm just guessing here | 11:43 |
flaper87 | TBH | 11:43 |
flaper87 | I believe the queries for getting flavors don't even support that scenario | 11:43 |
flaper87 | (yet_ | 11:43 |
flaper87 | (yet) | 11:43 |
flwang1 | flaper87: i can see your point but not really clearly | 11:44 |
flwang1 | flaper87: so should we hide the project id as long as we open the flavors list | 11:44 |
flwang1 | since it may confuse the end user? | 11:44 |
flaper87 | we can hide it for now, yes. | 11:45 |
flaper87 | Don't remove it, though. | 11:45 |
flaper87 | and, pleeeeeeeease, file a bug | 11:45 |
flaper87 | :D | 11:45 |
flaper87 | ok, brb. Need to finish something | 11:45 |
* flaper87 mutes emails and irc | 11:45 | |
*** flwang1 has quit IRC | 11:49 | |
*** flwang1 has joined #openstack-zaqar | 12:00 | |
*** Qiming_ has joined #openstack-zaqar | 12:12 | |
*** exploreshaifali has joined #openstack-zaqar | 12:15 | |
*** dynarro has joined #openstack-zaqar | 12:17 | |
*** gzhai has joined #openstack-zaqar | 12:22 | |
openstackgerrit | Flavio Percoco proposed openstack/zaqar: Let devstack redirect output https://review.openstack.org/220928 | 12:28 |
openstackgerrit | Flavio Percoco proposed openstack/zaqar: Let devstack redirect output https://review.openstack.org/220928 | 12:30 |
*** vkmc has quit IRC | 12:32 | |
*** vkmc has joined #openstack-zaqar | 12:32 | |
*** Qiming_ has quit IRC | 12:33 | |
*** Qiming__ has joined #openstack-zaqar | 12:33 | |
openstackgerrit | Fei Long Wang proposed openstack/zaqar: Hide project id for flavor https://review.openstack.org/220980 | 12:38 |
therve | flaper87, couple of last comments I hope on https://review.openstack.org/#/c/209910/ | 12:40 |
*** exploreshaifali has quit IRC | 13:06 | |
flaper87 | therve: thanks, will address those now | 13:43 |
flaper87 | therve: https://review.openstack.org/#/c/220928/ | 13:43 |
openstackgerrit | Flavio Percoco proposed openstack/zaqar: Policy support https://review.openstack.org/209910 | 13:49 |
*** gzhai has quit IRC | 13:52 | |
flaper87 | vkmc: btw, the v2 websocket port landed | 14:01 |
flaper87 | :D | 14:01 |
flaper87 | w000h0000 | 14:01 |
vkmc | wohooo | 14:01 |
vkmc | :D | 14:01 |
angvp | flaper87: what about the pizza? | 14:14 |
dynarro | vkmc, yay!!! | 14:15 |
vkmc | dynarro, :D | 14:15 |
angvp | hai | 14:15 |
vkmc | dynarro, are you joining us for the pizza marathon? flaper87 is hosting it | 14:15 |
dynarro | vkmc, pizza? marathon? what?! | 14:16 |
vkmc | haha | 14:17 |
vkmc | angvp, I blame you for this idea | 14:19 |
vkmc | angvp, so you tell her | 14:20 |
angvp | vkmc: done | 14:20 |
dynarro | OMG! that would be the best marathon ever | 14:25 |
dynarro | vkmc, angvp why italians haven't thought about that?! | 14:26 |
dynarro | I'll propose the idea haha | 14:26 |
angvp | because i'd be a problem and north and south gonna fight again | 14:27 |
dynarro | haha | 14:27 |
angvp | it will be* | 14:27 |
dynarro | I could walk for more that 7 km if they give me pizza on the way...or cookies | 14:29 |
dynarro | LOL | 14:30 |
vkmc | angvp, do Italians also have faina? | 14:30 |
angvp | vkmc: si, farinata si chiama | 14:30 |
vkmc | angvp, I love Italians | 14:31 |
angvp | vkmc: sorry, it's called "farinata" and in liguria are supposed to be theee place of the farinata | 14:31 |
vkmc | this week in Buenos Aires I plan to get my faina three-month supply | 14:32 |
angvp | I just have been hours in liguria and I didn't knew the existence of farinata by that moment | 14:32 |
angvp | vkmc: don't you have faina at bhi ? | 14:32 |
vkmc | angvp, no :'( | 14:32 |
vkmc | we are a different kind of Argentinians down here | 14:32 |
dynarro | seems that angvp is right | 14:35 |
dynarro | I haven't hear of it before | 14:36 |
dynarro | heard* | 14:36 |
vkmc | its like an add-on for pizza | 14:36 |
vkmc | its amazing | 14:36 |
dynarro | need to try that =) | 14:40 |
* flaper87 has no idea what these crazy people are talking about | 14:49 | |
therve | flaper87, Did you notice that zaqar functional tests doesn't use the devstack spawned version? | 14:49 |
therve | I guess it's because of that trick in the setup | 14:49 |
flaper87 | therve: you mean the one we have in the code base? | 14:50 |
therve | flaper87, the one what? :) | 14:50 |
flaper87 | therve: erm, sorry. I meant to say if you mean it's not using the plugin | 14:50 |
therve | flaper87, It's using the devstack plugin, and it spawns it properly | 14:51 |
therve | flaper87, But the tests spawn a in memory version of the server AFAIU | 14:51 |
flaper87 | therve: ah, yeah, the functional tests do. But those run in the py27 gate | 14:52 |
flaper87 | not the dsvm one | 14:52 |
therve | Hum | 14:52 |
flaper87 | The py27 gate doesn't have a running zaqar | 14:52 |
therve | flaper87, Why isn't there anything the dvsm logs then, even with your patch? | 14:52 |
flaper87 | which is why the functional tests spawn a separate process | 14:53 |
flaper87 | therve: I'm still trying to find out that | 14:53 |
flaper87 | :P | 14:53 |
therve | Ah :) | 14:53 |
flaper87 | I think that patch is good to land, though. | 14:53 |
flaper87 | but there's more work to do | 14:53 |
therve | Yeah | 14:54 |
therve | It doesn't look like it's running any tests | 14:54 |
flaper87 | Courtesy ping: vkmc therve ryansb flwang dynarro jasondotstar | 15:00 |
therve | Meeting? | 15:01 |
vkmc | meeting! | 15:01 |
*** diga has joined #openstack-zaqar | 15:03 | |
vkmc | diga, if interested, we are having the weekly meeting | 15:07 |
vkmc | in #openstack-meeting-3 | 15:07 |
diga | sure | 15:07 |
diga | let me join | 15:07 |
vkmc | diga, sorry for the delay on the review of the pools patch for the client, it merged some weeks ago | 15:07 |
vkmc | now that we have a new core, reviews will be quicker :) | 15:07 |
diga | vkmc: that's great | 15:08 |
openstackgerrit | Thomas Herve proposed openstack/zaqar: Enable tempest run in the gate https://review.openstack.org/221048 | 15:17 |
*** Qiming__ has quit IRC | 15:28 | |
flaper87 | therve: so, now that I remember. I believe one of the reasons tempest was disabled is because it wasn't entirely compatible and because we wanted to use zaqarclient instead for functional tests | 15:28 |
flaper87 | That is, work on improving zaqarclient's functional tests and run them on the dsvm gate | 15:29 |
flaper87 | not sure how good/bad that idea is | 15:29 |
flaper87 | therve: also, you may want to make your patch depend on mine to get more logs | 15:29 |
therve | flaper87, I think I did? | 15:31 |
therve | I thought I did :) | 15:32 |
flaper87 | therve: :D | 15:32 |
therve | Yeah looks right, we'll see if it worked | 15:34 |
therve | flaper87, I can see why we wouldn't want to use tempest. But let's not have useless jobs then | 15:36 |
flaper87 | therve: I fully agree, I think it just fell off of our radar | 15:37 |
flaper87 | lets see what your patch results are | 15:37 |
flaper87 | erm | 15:37 |
flaper87 | lets see what the results of your patch are | 15:37 |
* flaper87 can't english | 15:37 | |
vkmc | your English is on holidays | 15:38 |
vkmc | hahah | 15:38 |
flaper87 | vkmc: LOOOOOL | 15:39 |
flaper87 | pretty much | 15:39 |
vkmc | flaper87, I was going to reply that here https://twitter.com/flaper87/status/640810352670732288 | 15:40 |
vkmc | but I decided to save it for later | 15:40 |
flaper87 | :P | 15:40 |
therve | Ahahah | 15:40 |
vkmc | hahaha | 15:40 |
vkmc | I can't say anything though, my English lives on holidays | 15:41 |
flaper87 | I gave up with twitter | 15:41 |
flaper87 | it's impossible to not have typos there | 15:41 |
flaper87 | especially when one keeps ninja-editing tweets | 15:42 |
flaper87 | sometimes I can't even understand my own tweets | 15:42 |
flaper87 | dynarro: when do you think you'll be able to get these patches green? https://review.openstack.org/#/c/209238/ | 15:43 |
flaper87 | do you need help with those? | 15:43 |
flaper87 | vkmc: https://review.openstack.org/#/c/202248/ | 15:44 |
dynarro | flaper87, I'm trying to figure out why that isn't working | 15:45 |
flaper87 | vkmc: can you look at this too? https://review.openstack.org/#/c/220928/ | 15:46 |
flaper87 | therve: ^ | 15:46 |
flaper87 | I'm kinda tempte to approve that w/ just 1 +2 | 15:46 |
flaper87 | because I need it to figure out what's going on in the client's gate | 15:46 |
openstackgerrit | Doraly Navarro proposed openstack/python-zaqarclient: Added v1 folder https://review.openstack.org/216159 | 15:46 |
flaper87 | I guess I can use Depends-On | 15:46 |
flaper87 | meh | 15:46 |
therve | flaper87, What does --master do? | 15:47 |
flaper87 | therve: it just enables uwsig's built-in workers management | 15:48 |
therve | Hum ,ok | 15:49 |
flaper87 | It's not really necessary, I added it to suppress a warnning saying it was not running in master mode | 15:49 |
flaper87 | therve: https://uwsgi-docs.readthedocs.org/en/latest/Glossary.html?highlight=master | 15:49 |
therve | AH ok | 15:50 |
therve | +1 then | 15:50 |
flaper87 | therve: so, I think we'll need a couple of patches between project-config, zaqar and zaqarclient to make this work properly | 15:59 |
* flaper87 tries something | 16:00 | |
therve | Yeah sounds like it | 16:00 |
therve | So tempest tests did run and failed | 16:00 |
flaper87 | therve: I think I have an idea of how to make this work. | 16:00 |
therve | The question is whether we want to fix them or simply remove the builds | 16:00 |
flaper87 | I think we could have a single job template in project-config that works well for zaqarclient functional tests and tempest | 16:01 |
flaper87 | then have the required things installed by gate_hook | 16:01 |
therve | Do we care about tempest though? Having tests in-tree is much easier | 16:01 |
flaper87 | therve: not much, in fact, I'd like to convert those gates to zaqarclient as part of the above idea | 16:01 |
flaper87 | but still make it super easy to add tempest back if the tests are updated | 16:02 |
flaper87 | lemme take this one | 16:02 |
therve | OK | 16:02 |
flaper87 | therve: if the above doesn't work, I'll bounce it back to you | 16:03 |
flaper87 | ahahahha | 16:03 |
therve | :D | 16:03 |
openstackgerrit | Flavio Percoco proposed openstack/zaqar: Let devstack redirect output https://review.openstack.org/220928 | 16:17 |
openstackgerrit | Flavio Percoco proposed openstack/zaqar: WIP: Fixing gate https://review.openstack.org/221068 | 16:18 |
*** dynarro has quit IRC | 16:20 | |
openstackgerrit | Flavio Percoco proposed openstack/zaqar: WIP: Fixing gate https://review.openstack.org/221068 | 16:23 |
openstackgerrit | Flavio Percoco proposed openstack/python-zaqarclient: WIP: fixing gate https://review.openstack.org/221070 | 16:24 |
openstackgerrit | Flavio Percoco proposed openstack/zaqar: WIP: Fixing gate https://review.openstack.org/221068 | 16:47 |
openstackgerrit | Flavio Percoco proposed openstack/python-zaqarclient: WIP: fixing gate https://review.openstack.org/221070 | 16:48 |
openstackgerrit | Flavio Percoco proposed openstack/zaqar: WIP: Fixing gate https://review.openstack.org/221068 | 16:51 |
openstackgerrit | Flavio Percoco proposed openstack/zaqar: WIP: Fixing gate https://review.openstack.org/221068 | 16:57 |
*** stanchan has joined #openstack-zaqar | 17:11 | |
*** csoukup has joined #openstack-zaqar | 17:13 | |
*** diga has quit IRC | 17:22 | |
*** boris-42 has quit IRC | 17:30 | |
*** dguerri is now known as dguerri` | 17:50 | |
*** dynarro has joined #openstack-zaqar | 17:56 | |
*** davideagnello has joined #openstack-zaqar | 18:08 | |
openstackgerrit | Doraly Navarro proposed openstack/python-zaqarclient: Added support to claims https://review.openstack.org/213165 | 18:09 |
openstackgerrit | Doraly Navarro proposed openstack/python-zaqarclient: Added support to notifications https://review.openstack.org/209238 | 18:09 |
openstackgerrit | Doraly Navarro proposed openstack/python-zaqarclient: Added v1 folder https://review.openstack.org/216159 | 18:09 |
*** exploreshaifali has joined #openstack-zaqar | 18:46 | |
*** dynarro has quit IRC | 18:47 | |
*** davideagnello has quit IRC | 18:50 | |
*** zxyf has joined #openstack-zaqar | 19:07 | |
*** zxyf has left #openstack-zaqar | 19:13 | |
*** zxyf has joined #openstack-zaqar | 19:16 | |
*** zxyf has quit IRC | 19:22 | |
*** zxyf has joined #openstack-zaqar | 19:23 | |
*** exploreshaifali has quit IRC | 19:34 | |
*** flwang1 has quit IRC | 19:34 | |
*** flwang1 has joined #openstack-zaqar | 19:34 | |
*** boris-42 has joined #openstack-zaqar | 19:54 | |
*** flwang1 has quit IRC | 20:10 | |
*** dynarro has joined #openstack-zaqar | 20:12 | |
openstackgerrit | Flavio Percoco proposed openstack/zaqar: WIP: Fixing gate https://review.openstack.org/221068 | 20:15 |
*** csoukup has quit IRC | 20:26 | |
*** Isaac has joined #openstack-zaqar | 20:35 | |
*** zxyf has quit IRC | 20:36 | |
*** Isaac is now known as zxyf | 20:39 | |
openstackgerrit | Doraly Navarro proposed openstack/python-zaqarclient: Added support to v2 https://review.openstack.org/209238 | 20:41 |
*** flwang1 has joined #openstack-zaqar | 20:43 | |
*** flwang1 has quit IRC | 20:47 | |
*** davideagnello has joined #openstack-zaqar | 20:51 | |
*** flwang1 has joined #openstack-zaqar | 20:51 | |
*** dynarro has quit IRC | 20:53 | |
*** davideagnello has quit IRC | 20:56 | |
openstackgerrit | Flavio Percoco proposed openstack/zaqar: WIP: Fixing gate https://review.openstack.org/221068 | 21:14 |
*** david-lyle has quit IRC | 22:39 | |
*** david-lyle has joined #openstack-zaqar | 22:44 | |
*** gzhai has joined #openstack-zaqar | 22:48 | |
*** davideagnello has joined #openstack-zaqar | 22:52 | |
*** davideagnello has quit IRC | 22:57 | |
*** davideagnello has joined #openstack-zaqar | 23:05 | |
*** zxyf has quit IRC | 23:19 | |
openstackgerrit | Fei Long Wang proposed openstack/zaqar: Closes-Bug: #1489879 https://review.openstack.org/221122 | 23:26 |
openstack | bug 1489879 in zaqar "Got 500 error when addding new mongodb pool" [Low,Triaged] https://launchpad.net/bugs/1489879 - Assigned to Fei Long Wang (flwang) | 23:26 |
*** Qiming__ has joined #openstack-zaqar | 23:41 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!