Tuesday, 2014-04-22

*** mwagner_lap has joined #openstack-marconi00:00
*** norman has quit IRC00:17
*** rossk has quit IRC00:25
*** kgriffs is now known as kgriffs|afk01:08
*** nosnos has joined #openstack-marconi01:36
*** rwsu has quit IRC01:47
openstackgerritOpenStack Proposal Bot proposed a change to openstack/marconi: Updated from global requirements  https://review.openstack.org/8872301:48
*** malini_afk is now known as malini01:55
*** flwang has quit IRC03:01
*** nosnos has quit IRC03:32
*** malini is now known as malini_afk03:50
*** chandan_kumar has joined #openstack-marconi04:02
*** chandan_kumar has quit IRC04:10
*** nosnos has joined #openstack-marconi04:37
*** flwang has joined #openstack-marconi04:41
*** haomaiw__ has joined #openstack-marconi04:49
*** haomaiwang has quit IRC04:52
*** AAzza has joined #openstack-marconi05:07
*** AAzza has quit IRC05:48
*** haomaiw__ has quit IRC05:56
*** haomaiwa_ has joined #openstack-marconi05:56
*** haomaiw__ has joined #openstack-marconi05:57
*** haomaiwa_ has quit IRC06:01
*** chandan_kumar has joined #openstack-marconi06:02
*** mkoderer has joined #openstack-marconi06:02
*** AAzza has joined #openstack-marconi06:24
*** chandan_kumar has quit IRC06:49
*** haomaiw__ has quit IRC06:50
*** haomaiwang has joined #openstack-marconi06:51
*** flaper87|afk is now known as flaper8706:53
*** chandan_kumar has joined #openstack-marconi07:07
*** prashanthr_ has joined #openstack-marconi07:27
*** AAzza has quit IRC07:33
*** haomai___ has joined #openstack-marconi07:50
*** haomaiwang has quit IRC07:53
*** AAzza has joined #openstack-marconi08:02
*** AAzza has quit IRC08:08
*** AAzza1 has joined #openstack-marconi08:08
*** AAzza1 has left #openstack-marconi08:08
flwangflaper87: hey08:16
flaper87flwang: hey hey08:16
flwangflaper87: do you have a free moment? some questions I'd to discuss08:17
flaper87flwang: shoot08:17
flwangnice, thanks08:17
flwanggenerally, I'd like to understand the transport layer of Marconi better08:18
flwangflaper87: you know, we will support zmp as the transport layer soon08:19
flwangflaper87: so is it because zmp has the great support as a transport layer independently?08:20
flaper87flwang: so, whether we will support zmq soon or not is still under discussion08:20
flwangflaper87: in other words, is it possible ^bake^ the rabbit?08:20
flaper87we will support more transports at some point but this is perhaps not the right moment08:21
flaper87flwang: the transport layer behaves the same way the storage layer does08:21
flwangflaper87: I see, I'm just trying to figure out this from the technical POV08:21
flaper87that is, it allows for plugging different transport (protocols) as the way to communicate between the client and marconi08:21
flaper87A transport could be a raw TCP library08:22
flaper87for example08:22
flaper87zmq, would be a good transport layer although I'd probably go with a raw TCP transport at this point08:22
flaper87note that the transport doesn't hold (or shouldn't hold) the information about the API08:22
flaper87it just knows how to send / receive data08:23
flwangflaper87: so as a transport layer, it can be any protocol if it can transfer the message between c/s, is it?08:23
*** soulcheck has joined #openstack-marconi08:28
*** prashanthr_ has quit IRC08:28
*** jamie_h has joined #openstack-marconi08:28
soulcheckHi All! Got a quiestion. How would yo go about implementing a DLQ or at least redelivery policy on top of marconi?08:29
flaper87flwang: correct08:29
flaper87flwang: I'd like to do more research on that, TBH08:29
flaper87flwang: zmq seemed like a good idea at the time, I'm not sure about that anymore08:29
*** ykaplan has joined #openstack-marconi08:30
soulcheckI'm in a situation where i really need some messages redelivered up to certain number of times and then be discarded/put in the DLQ08:31
flaper87soulcheck: that's a really interesting question08:32
soulcheckI thought there was some message metadata available (like i.e. claim count) but I can't find anything08:32
flwangflaper87: thanks for the clarification, actually, I'm doing some investigation about the Marconi + IBM Websphere MQ08:32
flaper87soulcheck: there isn't but these kind of questions / feedback are exactly what we need08:33
flwangsoulcheck: DLQ == Dead Letter Queue?08:34
flaper87flwang: yeah08:34
*** haomai___ has quit IRC08:34
soulcheckflwang: yes, but it doesn't have to be a DLQ exactly08:34
flaper87soulcheck: would you mind to explain your use case in detail?08:35
flaper87what does your APP do?08:35
*** haomaiwang has joined #openstack-marconi08:35
flwangsoulcheck: it's an interesting idea, I'd like to see those undeliverable messages can be put in a specific queue(DLQ) can then retry specific times08:36
flaper87flwang: well, we should first define what "undeliverable message" means in this context08:37
soulcheckflaper87: We want to use marconi as a queue for a service where processing can fail for reasons external to marconi. Of course in typical error case we can just wait until claim expires or unclaim messages manually.08:37
flaper87They used to exist in a world where queues were not lazy resources and were first-citizens08:37
soulcheckthe problem is that if a message fails constantly we'd like to have a way of detecting it and removing it from the queue to avoid it being reprocessed08:37
flaper87soulcheck: ohh, mmh, good point08:38
soulcheckin worst case we can have a bunch of bad messages that get claimed constantly and don't allow good ones to be processed08:38
soulcheckflaper87: thanks. I think a simple counter that says how many times message was claimed until now would be sufficient08:39
flaper87soulcheck: with the current version of marconi, it'd have to be implemented client-side. But I could see this being implemented in marconi 208:39
flaper87s/2/too/08:39
flaper87there are things to consider (re counter)08:39
flaper87It'd be really easy to implement in storage drivers like mongodb's but it'd be quite an adventure to implement in an amqp based driver08:40
flaper87it'd require some sort of combination between re-sending+special-topics08:41
flaper87maybe...08:41
flaper87We'd need to have topic-flavors for sure08:41
flwangflaper87: can I back to my question now?08:44
soulcheckflaper87: yeah, i imagined it can be problematic (mind i know next to nil about ampq) . Still might be worth considering, especially that now users are forced to either use all-or-nothing strategy or to manage the redelivery policy internally in the client. Which in distributed case might mean using something persistent to store claim counts, etc.08:44
*** haomaiw__ has joined #openstack-marconi08:45
flaper87flwang: sure08:45
*** haomaiwang has quit IRC08:45
soulchecksorry for hijacking ;)08:45
flaper87soulcheck: no hijack at all, it's IRC08:46
flaper87:)08:46
flaper87soulcheck: I can see how that would be annoying from a user's perspective. I think this can be part of the API. Would you mind filing a blueprint for this?08:47
flaper87so we don't forget the idea and who raised it ;)08:47
soulcheckflaper87: sure, no prob08:47
soulcheckflaper87: in the bugtracker?08:48
flaper87soulcheck: https://blueprints.launchpad.net/marconi/+addspec08:48
soulcheckflaper87: ok, i'm on it08:49
flwangflaper87: see this https://www.ng.bluemix.net/docs/Services/mqs/mqs010_.html08:49
* flaper87 clicks08:49
flwangflaper87: maybe IBM can contribute a transport driver of Websphere MQ08:52
flwangbut maybe it's complicated to position the Marconi and ElasticMQ service from IBM perspective ;)08:52
flaper87Nothing forbids IBM for working on that, actually, it would be an amazing thing to have08:59
flaper87I wouldn't merge it in the code base though. Instead, I'd prefer to have it as an external transport plugin08:59
flwangflaper87: I can see your point09:07
flwangflaper87: thanks for the comments09:08
flaper87flwang: my pleasure :)09:08
*** jamie_h has quit IRC09:11
*** jamie_h has joined #openstack-marconi09:12
*** chandan_kumar has quit IRC09:15
*** AAzza1 has joined #openstack-marconi09:22
*** AAzza1 has left #openstack-marconi09:22
*** AAzza has joined #openstack-marconi09:22
*** chandan_kumar has joined #openstack-marconi09:29
*** jamie_h has quit IRC09:36
*** jamie_h has joined #openstack-marconi09:36
flaper87flwang: https://review.openstack.org/#/c/87934/09:41
flaper87:)09:41
flwangflaper87: ah, my dinner tonight09:41
*** jamie_h has quit IRC09:42
*** jamie_h has joined #openstack-marconi09:45
*** ykaplan has quit IRC09:51
*** jamie_h has quit IRC09:52
*** jamie_h has joined #openstack-marconi09:53
*** chandan_kumar is now known as chandankumar09:55
openstackgerritA change was merged to openstack/marconi: Updated from global requirements  https://review.openstack.org/8872309:56
*** chandankumar is now known as chandan_kumar09:56
*** prashanthr_ has joined #openstack-marconi09:56
flaper87AAzza: congrats ;)09:57
AAzzaflaper87: :-D thanks)09:59
flaper87brb09:59
flaper87AAzza: gotta ask you a couple of things when I'm back10:00
AAzzaflaper87: okey)10:00
flwangflaper87: ping10:02
*** reed has joined #openstack-marconi10:11
flaper87flwang: pong10:20
flwangflaper87: just have a glance with your patch, IMHO, the original behaviour has been changed, so do you think it's deserved a test?10:21
*** ykaplan has joined #openstack-marconi10:22
flaper87flwang: the test there is testing the original behavior. Streaming, that is10:23
flaper87I could add a new test for the new behaviour10:23
flwangit would be cool10:23
flaper87flwang: I'll add it later today10:24
flaper87thanks for the review10:24
flwangthanks for taking my suggestion :D10:25
flwangI'm booking hotel :)10:25
flwangbtw, did you book the hotel?10:25
flaper87flwang: WTF? Are you really going to be there?10:25
flaper87AWESOME AWESOME AWESOME AWESOME10:26
flaper87AWESOME AWESOME AWESOME!10:26
flaper87so, I don't know what hotel I booked at10:26
flwangflaper87: haha, I'm trying my best to give you guys a surprise10:26
* flaper87 is surprised :)10:26
flwangflaper87: ok, I will check with alcabrera|afk which hotel is good10:28
flaper87flwang: https://www.openstack.org/summit/openstack-summit-atlanta-2014/hotels/10:28
flaper87flwang: I'm at the westin10:29
flaper87but it's sold out now10:29
flwangokay, I need to make sure the hotel is on IBM hotel list10:29
flwangI will take a look and pick one near by you guys so that can get a drunk10:30
flwangbrb10:30
*** flwang has quit IRC10:31
*** jamie_h has quit IRC10:56
*** jamie_h has joined #openstack-marconi11:00
*** norman has joined #openstack-marconi11:16
*** AAzza has quit IRC11:19
*** AAzza has joined #openstack-marconi11:20
openstackgerritFlavio Percoco proposed a change to openstack/python-marconiclient: Initial support for openstack-client  https://review.openstack.org/8793711:26
openstackgerritFlavio Percoco proposed a change to openstack/python-marconiclient: Don't stream by default  https://review.openstack.org/8793411:26
*** AAzza has quit IRC11:44
*** prashanthr_ has quit IRC11:45
*** AAzza has joined #openstack-marconi11:53
*** tedross has joined #openstack-marconi12:07
*** norman has quit IRC12:11
*** norman has joined #openstack-marconi12:11
*** sriram has joined #openstack-marconi12:41
*** sriram has quit IRC12:44
*** sriram has joined #openstack-marconi12:44
*** nosnos has quit IRC12:48
*** jchai has joined #openstack-marconi12:49
*** nosnos has joined #openstack-marconi12:51
*** nosnos has quit IRC12:52
*** Obulpathi has joined #openstack-marconi13:23
*** Obulpathi has quit IRC13:23
*** Obulpathi has joined #openstack-marconi13:24
*** amitgandhi has joined #openstack-marconi13:27
*** ykaplan has quit IRC13:28
*** mpanetta has joined #openstack-marconi13:29
*** malini_afk is now known as malini13:29
*** balajiiyer has joined #openstack-marconi13:29
*** alcabrera|afk is now known as alcabrera13:37
alcabreraoh wow, flwang!13:39
alcabrerahurray!13:39
alcabreraflaper87: that was surprising!13:39
alcabreraalso, good morning!13:39
alcabrera:D13:39
flaper87goooooooooooooooood morning :D13:39
malini\\\\\\\\o/////////////13:40
alcabreramalini: that is amazing! You seem well-armed. :D13:41
maliniYES!!! I brought in my extra arms today!!13:41
maliniflaper87, AAzza: ping13:42
flaper87malini: pong13:42
flaper87malini: good morning13:42
* flaper87 was adding stuff to the agenda13:42
maliniflaper87: good afternoon!13:42
alcabreraoh yeah - meeting todsay. @_@13:42
flaper87FYI, https://etherpad.openstack.org/p/marconi-meetings13:42
* alcabrera is all caught up prepping a haskell talk13:42
alcabrera*caught -> tied13:42
alcabrera*today13:43
flaper87also, https://wiki.openstack.org/wiki/Marconi/FAQ13:43
flaper87I already moved some Q&A there13:43
alcabreraw00t13:43
alcabrerathanks you, flaper87!13:43
alcabrerawhich reminds me13:44
alcabrerathat I still need to check out oslo.messaging13:44
* flaper87 prepares his shotgun and asks:13:44
flaper87Did you guys vote for the TC election?13:44
maliniflaper87, AAzza: I dont feel good about using the application code to do the validation in test https://review.openstack.org/#/c/88538/2/tests/functional/wsgi/v1/test_queues.py .what if our API validation method itself becomes buggy13:44
maliniflaper87: aah..NO..thanks for the reminder13:44
maliniI dont know how I could forget that13:45
flaper87malini: well, that's exactly what the test is for, right? I mean, it feels weird to test json schema without going through json schema13:45
maliniflaper87: The test verifies the response body for our API calls -not necessarily the validate method13:46
maliniBut I didnt get the "it feels weird to test json schema without going through json schema"13:46
malinican you explain more?13:46
flaper87malini: erm, sorry, badly worded. I mean, it feels weird to test jsonschema's schema without using jsonschema.13:46
flaper87oh wait, is that assertSchema a Marconi thing that you created13:47
flaper87?13:47
maliniflaper87: yes13:52
flaper87malini: oh girl, I'm so sorry. Then you're totally right!13:52
maliniBWAHAHAAHAAAA13:53
flaper87I thought that was some testtools method13:53
flaper87:( :( :(13:53
maliniI created the assertSchema to give a better o/p message if the test fails13:53
flaper87yeah, I remembered that few minutes ago13:54
flaper87damn!13:54
flaper87malini: done, reverted my -2 and added a comment13:55
malinicool ! So the plan is to eventually convert all of our func tests to use jsonschema for validation13:56
maliniWe will use the same approach in all the tests13:56
flaper87yeah, that makes sense13:56
maliniThanks for reviewing this flaper87!13:56
maliniWe really need the extra eyes, since we will eventually use this in all the tests13:56
*** norman has quit IRC14:04
openstackgerritNataliia Uvarova proposed a change to openstack/marconi: Use jsonschema for testing queue  https://review.openstack.org/8853814:05
*** flwang has joined #openstack-marconi14:09
*** rwsu has joined #openstack-marconi14:09
*** amitgandhi has quit IRC14:12
*** amitgandhi has joined #openstack-marconi14:12
*** ayoung has quit IRC14:14
*** chandan_kumar has quit IRC14:17
*** saikrishna has joined #openstack-marconi14:24
*** saikrishna has quit IRC14:25
*** cpallares has joined #openstack-marconi14:27
*** mwagner_lap has quit IRC14:29
*** tedross has quit IRC14:32
*** alcabrera is now known as alcabrera|afk14:33
*** saikrishna has joined #openstack-marconi14:34
*** saikrishna has quit IRC14:37
*** ykaplan has joined #openstack-marconi14:37
*** tedross has joined #openstack-marconi14:45
openstackgerritNataliia Uvarova proposed a change to openstack/marconi: Use jsonschema for testing queue  https://review.openstack.org/8853814:45
*** kgriffs|afk is now known as kgriffs14:45
*** jergerber has joined #openstack-marconi14:49
*** vkmc has joined #openstack-marconi14:55
*** vkmc has quit IRC14:55
*** vkmc has joined #openstack-marconi14:55
*** alcabrera|afk is now known as alcabrera14:59
alcabreraflaper87, malini, flwang, kgriffs: we ready to marconi meet? :)15:00
flaper87FuckYeah15:01
flwangalcabrera: yep, i'm standing by :)15:01
kgriffsmeting15:01
kgriffsyeppers15:01
balajiiyer#openstack-meeting-alt15:01
malinijchai: Can you join the marconi meeting at #openstack-meeting-alt plz?15:05
flaper87AAzza: mind joining ^^^^15:05
AAzzaflaper87: Oo15:06
*** reed has quit IRC15:07
flaper87AAzza: it's marconi's meeting, we're in #openstack-marconi-alt15:09
*** jchai is now known as jchai_afk15:11
kgriffsAAzza: malini is going to introduce you in a moment15:13
kgriffs:D15:13
*** ametts has joined #openstack-marconi15:13
kgriffsno, that's how awesome you guys are. Our People Make the Differenceâ„¢.15:15
*** jchai_afk is now known as jchai15:21
*** Hao has joined #openstack-marconi15:27
*** ipbabble has quit IRC15:28
jchaimalini:  just joined15:29
malinithank you jchai!!15:29
*** whenry has joined #openstack-marconi15:36
*** mwagner_lap has joined #openstack-marconi15:39
*** reed has joined #openstack-marconi15:51
alcabreracould I get someone to update the meeting minutes today?16:02
alcabreramalini, flaper87, kgriffs: ?16:02
malinialcabrera: I thought a bot did that!!16:02
alcabrerahahaha16:02
malininow I know who the bot is :D16:02
alcabrerayes!16:03
maliniI can16:03
alcabreraa bot with 300 slides on haskell, type theory, and FP16:03
alcabrera:D :D :D16:03
alcabreramalini: https://wiki.openstack.org/wiki/Meetings/Marconi#Agenda16:04
alcabrerabrb16:05
Obulpathialcabrera: 300 slides :(16:06
alcabrerawahahaha16:06
*** alcabrera is now known as alcabrera|afk16:06
*** Obulpathi has quit IRC16:06
malinikgriffs, flaper87: wrt Marconi dinner16:07
* kgriffs is listening16:07
maliniI think we need to do it on Sunday16:07
malinito get all the out of towners in16:08
maliniWe have someone flying in at 1 pm, & somebody else on Sunday night16:08
malinikgriffs: when do you get here?16:08
*** AAzza has left #openstack-marconi16:09
kgriffssaturday16:10
*** chandan_kumar has joined #openstack-marconi16:11
malinido we have a sponsor for the dinner/lunch?16:12
maliniIt would be a shame to invite everybody & find out we have no money :D16:12
kgriffsarrive 3:50 pm16:12
kgriffslol, well people can just expense the dinner I guess. Depends on how formal we want to make it16:12
maliniametts is going to get some expensive expense requests :D16:14
* ametts is sticking his fingers in his ears and going "la la la la"16:15
malini:D16:15
maliniGuess we should all meet at Waffle House !16:15
*** ykaplan has quit IRC16:15
malinikgriffs: This is the list we came up with while you were at PyCon https://etherpad.openstack.org/p/marconi-party16:15
amettsI hear McDonald's has a 99 cent menu...16:16
maliniwonder if they have macaroni16:16
cpallaresmalini: LOL16:16
amitgandhiametts: malini and kgriffs dont expense up to you remember =)16:16
*** megan_w is now known as megan_w|afk16:16
cpallaresdoes anyone have a problem with tox saying this:  pep8: could not install deps?16:18
malinikgriffs: Plz add anybody we are missing16:19
*** tedross has quit IRC16:19
*** chandan_kumar has quit IRC16:20
kgriffscpallares: mmm, depends on the exact error16:21
kgriffssometimes PyPI just times out16:21
kgriffsotherwise, it could be an incompatibility between libraries16:21
kgriffsmalini: looks like a good list. If I can think of anyone else, I'll add them16:22
cpallareskgriffs: Mmm... Well it's quite long. http://paste.openstack.org/show/76656/16:28
*** megan_w|afk is now known as megan_w16:31
*** rossk has joined #openstack-marconi16:32
*** mpanetta has quit IRC16:32
*** mpanetta has joined #openstack-marconi16:33
*** tedross has joined #openstack-marconi16:34
*** Obulpathi has joined #openstack-marconi16:37
kgriffsflaper87, malini, flwang: Please glance at this rough draft and let me know if the major categories look correct. The sub-categories we can play with later, but I want to get started refactoring the wiki ASAP so it will be ready for the summit.16:37
kgriffshttps://etherpad.openstack.org/p/marconi-wiki-sitemap16:37
kgriffscpallares: looking16:38
kgriffs"make sure the development packages of libxml2 and libxslt are installed"16:39
kgriffsi think that is your issue16:39
*** shakamunyi has joined #openstack-marconi16:40
flaper87cpallares: yum install libxslt-devel libxml2-devel libxml-devel ;)16:41
* flaper87 clicks16:41
flaper87kgriffs: I'll go through it in a bit... dinner time16:41
cpallaresflaper87: enjoy :)16:41
kgriffsflaper87: no worries. BTW, note that I split up the FAQ across several "guides"16:41
flaper87kgriffs: awesome, thanks!16:42
*** jamie_h has quit IRC16:42
kgriffslike to get your thoughts on doing that16:42
*** Obulpathi has quit IRC16:44
*** jchai is now known as jchai_afk16:47
*** soulcheck has quit IRC16:47
*** amitgandhi has quit IRC16:50
*** amitgandhi has joined #openstack-marconi16:50
*** megan_w is now known as megan_w|afk16:53
*** amitgandhi has quit IRC16:55
*** balajiiyer has quit IRC16:59
*** cpallares has quit IRC17:00
*** megan_w|afk is now known as megan_w17:06
*** cpallares has joined #openstack-marconi17:12
*** ayoung_ has joined #openstack-marconi17:14
*** amitgandhi has joined #openstack-marconi17:15
*** amitgandhi has quit IRC17:16
*** amitgandhi has joined #openstack-marconi17:16
*** ayoung_ is now known as ayoung17:25
*** jchai_afk is now known as jchai17:30
*** jamie_h has joined #openstack-marconi17:32
malinikgriffs: just checked the wiki refactor17:33
malinilooks good17:33
kgriffsgreat, thanks!17:40
*** chandan_kumar has joined #openstack-marconi17:52
*** alcabrera|afk is now known as alcabrera17:52
*** Obulpathi has joined #openstack-marconi17:53
*** Obulpathi has quit IRC17:53
*** mpanetta_ has joined #openstack-marconi17:55
*** Obulpathi has joined #openstack-marconi17:58
*** mpanetta has quit IRC17:59
*** mpanetta_ is now known as mpanetta17:59
*** cpallares has quit IRC18:00
*** Hao has quit IRC18:12
*** Hao has joined #openstack-marconi18:12
kgriffsmalini: have you read this book?18:16
*** Hao has quit IRC18:16
kgriffshttp://www.amazon.com/Writing-Effective-Cases-Alistair-Cockburn/dp/020170225818:17
kgriffsmalini: you will probably recognize that I use a simplified template from that book in my writing18:18
kgriffs(see also: http://alistair.cockburn.us/Basic+use+case+template)18:18
kgriffsbbl - lunch!18:18
*** kgriffs is now known as kgriffs|afk18:19
*** Obulpathi has quit IRC18:24
*** Obulpathi has joined #openstack-marconi18:24
*** chandan_kumar has quit IRC18:29
malinikgriffs|afk: I havent..Thanks for the link18:30
malinialcabrera, flaper87: how do I build v1.1 of marconi-server?18:31
maliniI just need to get the v1.1 of the API running via gunicorn/marconi-server18:31
malinijchai: Is there any reason why only some schemas have 'status_code' in https://review.openstack.org/#/c/87762/5/tempest/api_schema/queuing/v1/queues.py ?18:42
jchaiYes. The ones with status code are the main response18:43
jchaiThe other ones are elements within that main response18:43
jchaiThe rest client has the function validate_response that parses the status_code and performs that validation18:44
*** vkmc has quit IRC18:45
*** openstackgerrit has quit IRC18:49
*** openstackgerrit has joined #openstack-marconi18:49
*** Obulpathi has quit IRC18:53
*** chandan_kumar has joined #openstack-marconi18:53
alcabreramalini: gunicorn marconi.queues.transport.wsgi.v1_1.app:app18:54
sriramalcabrera: you beat me to it18:54
sriram:P18:54
malinithanks jchai!18:55
*** Obulpathi has joined #openstack-marconi18:55
malinithanks alcabrera & beaten sriram ;)18:55
srirammalini: lol18:55
alcabrera:D18:55
*** chandan_kumar has quit IRC19:17
*** amitgandhi has quit IRC19:19
*** amitgandhi has joined #openstack-marconi19:20
*** amitgandhi has quit IRC19:24
*** malini is now known as malini_afk19:30
*** shakamunyi has quit IRC19:33
*** shakamunyi has joined #openstack-marconi19:36
*** AAzza has joined #openstack-marconi19:37
AAzzahi again, how to ask Jenkins to recheck the patch?19:41
*** Obulpathi has quit IRC19:46
alcabreraAAzza: reverify no bug19:47
alcabreraas a comment19:48
alcabreraLet me know if that helps, AAzza. :)19:48
flaper87it's 'recheck no bug' for jenkins rechecks19:48
flaper87and 'reverify #BUG_NUMBER_HERE' when the patch has been approved19:48
flaper87The 'reverify no bug' thing was removed :(19:49
AAzzathanks, 'recheck no bug' works)19:51
*** soulcheck has joined #openstack-marconi19:53
alcabreraflaper87: knows best. :D19:54
*** mwagner_lap has quit IRC19:55
*** soulcheck has quit IRC19:55
*** Obulpathi has joined #openstack-marconi20:07
alcabreraI'm headed out. Take care, all!20:16
flaper87alcabrera: nooooooooooooooooooooo20:16
flaper87alcabrera: I was about to ask you something :D20:16
flaper87ttyt20:16
flaper87enjoy the rest of your day20:17
alcabreraflaper87: hahaha20:20
alcabrerak20:20
alcabreraone question20:20
alcabreraflaper87: what'd you have in mind? :)20:20
flaper87alcabrera: you already answered it on twitter ;)20:20
flaper87:)20:20
flaper87thanks man!20:20
alcabreraah, alright!20:21
alcabreracatch you later. :D20:21
*** alcabrera is now known as alcabrera|afk20:21
*** sriram has quit IRC20:33
*** kgriffs|afk is now known as kgriffs20:46
*** soulcheck has joined #openstack-marconi20:47
*** AAzza has left #openstack-marconi20:48
*** megan_w is now known as megan_w|afk20:53
*** soulcheck has quit IRC21:02
*** vkmc has joined #openstack-marconi21:06
*** tedross has quit IRC21:15
*** soulcheck has joined #openstack-marconi21:19
*** Obulpathi has quit IRC21:29
*** mpanetta has quit IRC21:29
*** jchai has quit IRC21:44
*** mwagner_lap has joined #openstack-marconi22:07
*** jamie_h has quit IRC22:14
*** Obulpathi has joined #openstack-marconi22:21
*** Obulpathi has quit IRC22:24
*** soulcheck has quit IRC22:31
openstackgerritKurt Griffiths proposed a change to openstack/marconi: fix(metadata): Fix inconsistent error response under v1.1  https://review.openstack.org/8970922:45
openstackgerritKurt Griffiths proposed a change to openstack/marconi: fix(metadata): Fix inconsistent error response under v1.1  https://review.openstack.org/8970922:46
openstackgerritKurt Griffiths proposed a change to openstack/marconi: fix(metadata): Fix inconsistent error response under v1.1  https://review.openstack.org/8970922:47
*** reed has quit IRC22:56
*** jergerber has quit IRC23:15
*** kgriffs is now known as kgriffs|afk23:21
*** norman has joined #openstack-marconi23:23
*** flaper87 is now known as flaper87|afk23:35

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