*** yamamoto has joined #openstack-dev | 00:00 | |
*** garyh has joined #openstack-dev | 00:00 | |
*** gargola has quit IRC | 00:01 | |
*** yamamoto has quit IRC | 00:01 | |
*** kgriffs|afk is now known as kgriffs | 00:01 | |
*** yamamoto has joined #openstack-dev | 00:02 | |
*** morazi has quit IRC | 00:03 | |
*** annashen has joined #openstack-dev | 00:07 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 00:07 | |
*** etoews has quit IRC | 00:07 | |
*** markvoelker has quit IRC | 00:07 | |
*** alexpilotti has quit IRC | 00:10 | |
*** thomasem has quit IRC | 00:10 | |
*** marun has quit IRC | 00:11 | |
*** mlsoule has quit IRC | 00:12 | |
*** claudiub has quit IRC | 00:14 | |
*** abhirc has joined #openstack-dev | 00:15 | |
*** andreykurilin_ has quit IRC | 00:16 | |
*** jasondotstar has joined #openstack-dev | 00:16 | |
*** Sukhdev has quit IRC | 00:16 | |
*** tserong_ is now known as tserong | 00:17 | |
*** yamamoto has quit IRC | 00:17 | |
*** ncoghlan has joined #openstack-dev | 00:19 | |
*** stanchan has quit IRC | 00:20 | |
*** paragan has joined #openstack-dev | 00:20 | |
*** paragan has joined #openstack-dev | 00:20 | |
*** hnakil has joined #openstack-dev | 00:21 | |
*** dims has quit IRC | 00:22 | |
*** shaohe_feng has quit IRC | 00:23 | |
*** dims has joined #openstack-dev | 00:23 | |
*** shaohe_robot1 has quit IRC | 00:23 | |
*** alex_xu_ has quit IRC | 00:23 | |
*** jyuso1 has quit IRC | 00:23 | |
*** davideagnello has joined #openstack-dev | 00:24 | |
*** Yingxin has quit IRC | 00:24 | |
*** oomichi has joined #openstack-dev | 00:26 | |
*** gargola has joined #openstack-dev | 00:27 | |
*** exploreshaifali has quit IRC | 00:28 | |
*** davideagnello has quit IRC | 00:29 | |
*** rahulrrixe has quit IRC | 00:31 | |
*** r1chardj0n3s is now known as r1chardj0n3s_afk | 00:31 | |
*** amitgandhinz has joined #openstack-dev | 00:32 | |
*** ChrisGibbs has quit IRC | 00:32 | |
*** carl_baldwin has quit IRC | 00:33 | |
*** etoews has joined #openstack-dev | 00:33 | |
*** otter768 has joined #openstack-dev | 00:34 | |
*** abhirc has quit IRC | 00:34 | |
*** amitgandhinz has quit IRC | 00:36 | |
*** otter768 has quit IRC | 00:38 | |
*** etoews has quit IRC | 00:39 | |
*** jasondotstar has quit IRC | 00:41 | |
*** claudiub has joined #openstack-dev | 00:43 | |
miguelgrinberg | notmyname: around for a quick question? | 00:44 |
---|---|---|
notmyname | miguelgrinberg: yes | 00:45 |
notmyname | hi! | 00:45 |
miguelgrinberg | notmyname: hi, I was reading your last comment on the metadata review and have a question, due to my lack of knowledge of swift APIs | 00:45 |
notmyname | sure | 00:46 |
*** signed8bit is now known as signed8bit_ZZZzz | 00:46 | |
miguelgrinberg | when you mention a "swift object URL", a GET request to that gives you the contents of that file directly, correct? | 00:46 |
miguelgrinberg | so no JSON wrapper or anything else | 00:46 |
notmyname | correct. the contents of the request body are equal to the contents you originally stored (md5sums [ie etags] match). | 00:46 |
miguelgrinberg | and you are concerned about mixing resource+metadata because you have no place to put the metadata unless you make a wrapper | 00:47 |
notmyname | no place except in the response body? | 00:47 |
notmyname | s/except// | 00:48 |
miguelgrinberg | right, if you have the blob of data in the response body, then I understand why you put metadata in the headers | 00:49 |
*** zz_dimtruck is now known as dimtruck | 00:49 | |
notmyname | one thing I didn't mention in gerrit is that since the data would need to be escaped, the stored checksums wouldn't be correct | 00:50 |
*** abhirc has joined #openstack-dev | 00:50 | |
notmyname | (also note that the json examples should use " and not ', IIRC) | 00:50 |
miguelgrinberg | based on my current understanding, just wanted to say that I would never recommend that swift returns something else in the body, I think returning the data is a good design | 00:50 |
*** r1chardj0n3s_afk is now known as r1chardj0n3s | 00:51 | |
miguelgrinberg | but I also think the headers is not the best place for metadata | 00:51 |
notmyname | well, that's why I was suggesting multipart MIME docs. it still allows you to have both in the response body, but it separates the data so that it's not encapsulated or encoded and it still allows for efficient streaming | 00:51 |
miguelgrinberg | is it important to return data and metadata in the same request/response cycle? | 00:51 |
*** markvoelker has joined #openstack-dev | 00:52 | |
*** yamamoto has joined #openstack-dev | 00:53 | |
miguelgrinberg | can we say that using different requests for each is sufficient? | 00:53 |
*** annashen has quit IRC | 00:53 | |
notmyname | that would require conditional requests from the client and that they are implemented on the server (swift already supports conditional requests, but it does make extra work for the client) | 00:54 |
notmyname | and you wouldn't be guaranteed a response | 00:54 |
notmyname | ie you'd have to have some piece of state carried around to ensure that the 2nd request is returning content that is associated with the 21st request | 00:55 |
*** yamamoto_ has joined #openstack-dev | 00:55 | |
miguelgrinberg | so this is to avoid race conditions, where the data changes in between requests? | 00:56 |
miguelgrinberg | why can't you just request data and metadata in successive requests? | 00:57 |
notmyname | no, I don't think you can avoid the race. only catch it | 00:57 |
*** daniel3_ has quit IRC | 00:57 | |
*** david-lyle is now known as david-lyle_afk | 00:57 | |
*** yamamoto has quit IRC | 00:57 | |
notmyname | because something might have happened between your requests (a delete, a failure, etc) | 00:57 |
*** xarses has quit IRC | 00:57 | |
miguelgrinberg | right, but why is that a problem? Is there a specific use case that requires data and metadata to be returned together atomically, or can we relax that? | 00:59 |
*** markvoelker has quit IRC | 01:00 | |
*** zzzeek has quit IRC | 01:00 | |
notmyname | good question. let me think | 01:00 |
*** pradeep has quit IRC | 01:00 | |
*** ghostpl has quit IRC | 01:04 | |
notmyname | miguelgrinberg: ok | 01:06 |
notmyname | I don't think it's possible for all metadata. (eg content-length, content-type, etag, date, and other metadata will be in the response) | 01:06 |
miguelgrinberg | notmyname: when I say metadata I really mean custom metadata | 01:07 |
miguelgrinberg | etags and content types need to be in the headers | 01:07 |
notmyname | for other non-standard or user settable pieces of metadata, it's possible (all the stuff today saved as x-object-meta-<key>: <value>) | 01:07 |
miguelgrinberg | yes, those are the bits I was mostly concerned with | 01:07 |
miguelgrinberg | I wrote a response that tries to address your concerns | 01:07 |
notmyname | that's not entirely dissimilar from a metadata indexing service | 01:07 |
notmyname | however, I want to ask you a question about it | 01:07 |
*** abhirc has quit IRC | 01:08 | |
miguelgrinberg | sure | 01:08 |
notmyname | I've been around swift for a while and seen a lot of different use cases. obviously not all, of course. what is the particular problem you're trying to solve? what can you not do today that you can do if this guideline is implemented? | 01:08 |
*** marun has joined #openstack-dev | 01:09 | |
miguelgrinberg | it's just a matter of consistency, just try to direct all the APIs to converge on their design choices | 01:09 |
*** promulo__ has joined #openstack-dev | 01:09 | |
notmyname | and other projects today are currently using the "json in a response body" method? | 01:10 |
*** abhirc has joined #openstack-dev | 01:10 | |
*** nellysmitt has joined #openstack-dev | 01:11 | |
miguelgrinberg | yes, that is pretty much the style for all other APIs. The Swift case is particular, because you return data that already has a strong idea of its own representation. | 01:11 |
miguelgrinberg | other APIs do not have that | 01:11 |
notmyname | to the first point on your response, I'm not saying it's not possible to put unicode snowman into a header or on a url path. I'm asking that you include some examples that aren't 7-but ascii | 01:11 |
miguelgrinberg | so JSON is an ideal representation for those | 01:11 |
notmyname | *7-bit | 01:11 |
*** paragan has quit IRC | 01:12 | |
*** signed8bit_ZZZzz is now known as signed8bit | 01:13 | |
miguelgrinberg | I could, but I honestly feel it is unrelated to metadata, it affects all requests and responses that have JSON bodies | 01:13 |
*** marun has quit IRC | 01:13 | |
*** signed8bit is now known as signed8bit_ZZZzz | 01:13 | |
*** signed8bit_ZZZzz is now known as signed8bit | 01:13 | |
miguelgrinberg | not to say having a guideline on that is a bad idea, that would be something I would support as its own guideline | 01:13 |
*** promulo has quit IRC | 01:13 | |
*** tiswanso has joined #openstack-dev | 01:13 | |
*** abhirc has quit IRC | 01:15 | |
*** nellysmitt has quit IRC | 01:16 | |
*** tsekiyam_ has joined #openstack-dev | 01:16 | |
*** Mandell has quit IRC | 01:16 | |
*** tiswanso has quit IRC | 01:17 | |
notmyname | miguelgrinberg: what about just having an ascii example and a unicode snowman example in every guideline? that way you know it's covered and can show what it looks like in harder circumstances | 01:17 |
*** tiswanso has joined #openstack-dev | 01:17 | |
*** hdd has quit IRC | 01:18 | |
*** jpomero has quit IRC | 01:18 | |
notmyname | miguelgrinberg: back to the earlier thread... | 01:18 |
*** markvoelker has joined #openstack-dev | 01:19 | |
*** kgriffs is now known as kgriffs|afk | 01:19 | |
*** achanda_ has joined #openstack-dev | 01:19 | |
notmyname | miguelgrinberg: I would love for APIs to be as similar as possible. I'm not trying to shoot down stuff because it's different. but I'd love to not have guidelines that are near impossible to implement in Swift | 01:19 |
*** tsekiyama has quit IRC | 01:20 | |
*** yaguang has joined #openstack-dev | 01:20 | |
*** noslzzp has quit IRC | 01:20 | |
*** tsekiyam_ has quit IRC | 01:21 | |
*** etoews has joined #openstack-dev | 01:21 | |
notmyname | miguelgrinberg: I've got to run. I'll be back online in about 14 hours | 01:22 |
*** achanda has quit IRC | 01:22 | |
*** achanda_ has quit IRC | 01:24 | |
*** jasondotstar has joined #openstack-dev | 01:24 | |
*** Riddhi has quit IRC | 01:25 | |
*** gyee has quit IRC | 01:27 | |
*** hemna is now known as hemnafk | 01:28 | |
*** _cjones_ has quit IRC | 01:29 | |
*** _cjones_ has joined #openstack-dev | 01:29 | |
*** jamielennox is now known as jamielennox|away | 01:33 | |
*** mikeoutland has quit IRC | 01:33 | |
*** RScottCoyle has joined #openstack-dev | 01:33 | |
*** dims has quit IRC | 01:33 | |
*** xingchao has joined #openstack-dev | 01:33 | |
*** RScottCoyle has quit IRC | 01:34 | |
*** _cjones_ has quit IRC | 01:34 | |
*** RScottCoyle has joined #openstack-dev | 01:34 | |
*** coasterz has joined #openstack-dev | 01:36 | |
*** stanzgy has joined #openstack-dev | 01:37 | |
*** Lee1092 has joined #openstack-dev | 01:37 | |
*** mriedem has quit IRC | 01:38 | |
*** dims has joined #openstack-dev | 01:38 | |
*** etoews has quit IRC | 01:38 | |
*** zhiwei has joined #openstack-dev | 01:40 | |
*** dims has quit IRC | 01:42 | |
*** dims has joined #openstack-dev | 01:42 | |
*** vicky_ has joined #openstack-dev | 01:43 | |
*** abhirc has joined #openstack-dev | 01:45 | |
*** markmcclain has quit IRC | 01:46 | |
*** markmcclain has joined #openstack-dev | 01:48 | |
*** melwitt has quit IRC | 01:48 | |
*** nelsnelson has quit IRC | 01:49 | |
*** jasondotstar has quit IRC | 01:50 | |
*** leeantho has quit IRC | 01:50 | |
*** nelsnelson has joined #openstack-dev | 01:51 | |
*** Marga_ has quit IRC | 01:51 | |
*** gfidente has quit IRC | 01:51 | |
*** Marga_ has joined #openstack-dev | 01:52 | |
*** sputnik13 has quit IRC | 01:52 | |
*** Riddhi has joined #openstack-dev | 01:52 | |
*** READ10 has quit IRC | 01:55 | |
*** kobis has joined #openstack-dev | 01:57 | |
*** xarses has joined #openstack-dev | 01:58 | |
*** zzz_jasonamyers is now known as jasonamyers | 01:59 | |
*** jasonamyers is now known as zzz_jasonamyers | 02:01 | |
*** yamamoto_ has quit IRC | 02:01 | |
*** topol has joined #openstack-dev | 02:02 | |
*** noelbk has quit IRC | 02:02 | |
*** yamamoto_ has joined #openstack-dev | 02:06 | |
*** bpokorny has quit IRC | 02:06 | |
*** Marga_ has quit IRC | 02:07 | |
*** thrash is now known as thrash|g0ne | 02:08 | |
*** etoews has joined #openstack-dev | 02:11 | |
*** patrickeast has quit IRC | 02:11 | |
*** rwsu is now known as rwsu-afk | 02:11 | |
*** mberlin1 has joined #openstack-dev | 02:11 | |
*** ngoracke has joined #openstack-dev | 02:12 | |
*** mberlin has quit IRC | 02:13 | |
*** sputnik13 has joined #openstack-dev | 02:14 | |
*** mfalatic has quit IRC | 02:14 | |
*** PingKuo has joined #openstack-dev | 02:14 | |
*** ybathia has quit IRC | 02:17 | |
*** novas0x2a|laptop has quit IRC | 02:19 | |
*** angdraug has quit IRC | 02:20 | |
*** haomaiwang has joined #openstack-dev | 02:20 | |
*** zzz_jasonamyers is now known as jasonamyers | 02:25 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 02:26 | |
*** jckasper has joined #openstack-dev | 02:26 | |
*** tsekiyama has joined #openstack-dev | 02:27 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 02:27 | |
*** salv-orlando has quit IRC | 02:29 | |
*** kgriffs|afk is now known as kgriffs | 02:29 | |
*** hnakil has quit IRC | 02:30 | |
*** tsekiyama has quit IRC | 02:31 | |
*** jasonamyers is now known as zzz_jasonamyers | 02:31 | |
*** otter768 has joined #openstack-dev | 02:33 | |
*** diegows has quit IRC | 02:33 | |
*** galstrom_zzz is now known as galstrom | 02:33 | |
*** dims has quit IRC | 02:35 | |
*** noelbk has joined #openstack-dev | 02:35 | |
*** dims has joined #openstack-dev | 02:36 | |
*** abhirc has quit IRC | 02:36 | |
*** etoews has quit IRC | 02:36 | |
*** zzz_jasonamyers is now known as jasonamyers | 02:38 | |
*** kgriffs is now known as kgriffs|afk | 02:39 | |
*** noelbk has quit IRC | 02:40 | |
*** Riddhi has quit IRC | 02:40 | |
*** pradeep1 has joined #openstack-dev | 02:41 | |
*** Riddhi has joined #openstack-dev | 02:41 | |
*** dkranz has quit IRC | 02:44 | |
*** jasonamyers is now known as zzz_jasonamyers | 02:45 | |
*** nithyag_ has quit IRC | 02:47 | |
*** nithyag_ has joined #openstack-dev | 02:48 | |
*** rushiagr_away is now known as rushiagr | 02:48 | |
*** spandhe has quit IRC | 02:50 | |
*** dims has quit IRC | 02:51 | |
*** unicell1 has quit IRC | 02:52 | |
*** RScottCoyle has quit IRC | 02:54 | |
*** pradeep2 has joined #openstack-dev | 02:56 | |
*** pradeep1 has quit IRC | 02:57 | |
*** stanchan has joined #openstack-dev | 02:57 | |
*** claudiub has quit IRC | 03:00 | |
*** spzala has quit IRC | 03:01 | |
*** paragan has joined #openstack-dev | 03:04 | |
*** paragan has quit IRC | 03:04 | |
*** paragan has joined #openstack-dev | 03:04 | |
*** eghobo has quit IRC | 03:04 | |
*** pradeep1 has joined #openstack-dev | 03:05 | |
*** pradeep2 has quit IRC | 03:05 | |
*** neelashah has joined #openstack-dev | 03:08 | |
*** ijw has joined #openstack-dev | 03:09 | |
*** sgran has quit IRC | 03:11 | |
*** nellysmitt has joined #openstack-dev | 03:12 | |
*** hemna_ has joined #openstack-dev | 03:14 | |
*** cdub has joined #openstack-dev | 03:15 | |
*** pradeep1 has quit IRC | 03:16 | |
*** nellysmitt has quit IRC | 03:16 | |
*** hemna_ is now known as hemna | 03:17 | |
*** rushiagr is now known as rushiagr_away | 03:19 | |
*** Ananci has joined #openstack-dev | 03:23 | |
*** stevemar has quit IRC | 03:23 | |
*** stevemar has joined #openstack-dev | 03:24 | |
*** bdpayne has quit IRC | 03:25 | |
*** ajc_ has joined #openstack-dev | 03:25 | |
*** signed8bit has quit IRC | 03:28 | |
*** harlowja is now known as harlowja_away | 03:28 | |
*** annashen has joined #openstack-dev | 03:29 | |
*** Ephur has quit IRC | 03:30 | |
*** kgriffs|afk is now known as kgriffs | 03:31 | |
*** siwsky has quit IRC | 03:32 | |
*** etoews has joined #openstack-dev | 03:33 | |
*** hdd has joined #openstack-dev | 03:34 | |
*** sgran has joined #openstack-dev | 03:37 | |
*** FunnyLookinHat has quit IRC | 03:39 | |
*** deepthi has joined #openstack-dev | 03:39 | |
*** etoews has quit IRC | 03:40 | |
*** kbrierly has quit IRC | 03:41 | |
*** kbrierly has joined #openstack-dev | 03:42 | |
*** zzz_jasonamyers is now known as jasonamyers | 03:43 | |
*** rushiagr_away is now known as rushiagr | 03:45 | |
*** pradeep has joined #openstack-dev | 03:46 | |
*** noelbk has joined #openstack-dev | 03:47 | |
*** jasonamyers is now known as zzz_jasonamyers | 03:47 | |
*** tiswanso has quit IRC | 03:50 | |
*** vivekd has joined #openstack-dev | 03:50 | |
*** Mandell has joined #openstack-dev | 03:51 | |
*** SridharG has joined #openstack-dev | 03:53 | |
*** ajayaa has joined #openstack-dev | 03:54 | |
*** noelbk has quit IRC | 03:54 | |
*** mitz_ has quit IRC | 03:56 | |
*** ijw has quit IRC | 03:56 | |
*** mitz has joined #openstack-dev | 03:56 | |
*** sgran has quit IRC | 03:58 | |
*** ijw has joined #openstack-dev | 03:58 | |
*** sgran has joined #openstack-dev | 03:58 | |
*** unicell has joined #openstack-dev | 04:01 | |
*** Alexandra_ has joined #openstack-dev | 04:04 | |
*** asettle is now known as alexandra | 04:07 | |
*** Alexandra_ is now known as asettle | 04:07 | |
*** utlemming has joined #openstack-dev | 04:12 | |
*** annashen has quit IRC | 04:12 | |
*** annashen has joined #openstack-dev | 04:15 | |
*** SridharG has quit IRC | 04:15 | |
*** sarob has joined #openstack-dev | 04:19 | |
*** achanda has joined #openstack-dev | 04:20 | |
*** Sukhdev has joined #openstack-dev | 04:22 | |
*** achanda has quit IRC | 04:22 | |
*** achanda has joined #openstack-dev | 04:22 | |
*** ghostpl has joined #openstack-dev | 04:24 | |
*** galstrom is now known as galstrom_zzz | 04:25 | |
*** noelbk has joined #openstack-dev | 04:27 | |
*** ghostpl has quit IRC | 04:28 | |
*** _cjones_ has joined #openstack-dev | 04:30 | |
*** annashen has quit IRC | 04:31 | |
*** SridharG has joined #openstack-dev | 04:31 | |
*** _cjones_ has quit IRC | 04:32 | |
*** _cjones_ has joined #openstack-dev | 04:33 | |
*** utlemming has quit IRC | 04:36 | |
*** etoews has joined #openstack-dev | 04:36 | |
*** hdd has quit IRC | 04:37 | |
*** _cjones_ has quit IRC | 04:37 | |
*** hnakil has joined #openstack-dev | 04:38 | |
*** etoews has quit IRC | 04:40 | |
*** Riddhi has quit IRC | 04:44 | |
*** ajayaa has quit IRC | 04:44 | |
*** BharatK has joined #openstack-dev | 04:45 | |
*** xarses has quit IRC | 04:50 | |
*** yaguang has quit IRC | 04:52 | |
*** kobis has quit IRC | 04:53 | |
*** neelashah has quit IRC | 04:54 | |
*** changbl has joined #openstack-dev | 04:57 | |
*** yatin has joined #openstack-dev | 04:59 | |
*** rohitk has joined #openstack-dev | 04:59 | |
*** otter768 has quit IRC | 04:59 | |
*** eghobo has joined #openstack-dev | 04:59 | |
*** otter768 has joined #openstack-dev | 05:01 | |
*** oomichi has quit IRC | 05:04 | |
*** xarses has joined #openstack-dev | 05:05 | |
*** ybathia has joined #openstack-dev | 05:07 | |
*** om has joined #openstack-dev | 05:07 | |
*** SridharG has left #openstack-dev | 05:07 | |
*** ybathia_ has joined #openstack-dev | 05:07 | |
*** noelbk has quit IRC | 05:08 | |
*** davideagnello has joined #openstack-dev | 05:09 | |
*** annashen has joined #openstack-dev | 05:09 | |
*** garyh has quit IRC | 05:09 | |
*** otter768 has quit IRC | 05:10 | |
*** kgriffs is now known as kgriffs|afk | 05:11 | |
*** ybathia has quit IRC | 05:11 | |
*** ybathia_ is now known as ybathia | 05:11 | |
*** david-lyle_afk has quit IRC | 05:11 | |
*** achanda has quit IRC | 05:11 | |
*** david-lyle_afk has joined #openstack-dev | 05:11 | |
*** nellysmitt has joined #openstack-dev | 05:13 | |
*** hdd has joined #openstack-dev | 05:17 | |
*** nellysmitt has quit IRC | 05:17 | |
*** harlowja_away has quit IRC | 05:19 | |
*** davideagnello has quit IRC | 05:21 | |
*** test2222 has joined #openstack-dev | 05:23 | |
*** garyh has joined #openstack-dev | 05:24 | |
*** alex_xu has joined #openstack-dev | 05:24 | |
*** ajayaa has joined #openstack-dev | 05:25 | |
*** anish_ has joined #openstack-dev | 05:25 | |
*** test2222 has quit IRC | 05:27 | |
*** bradjones has quit IRC | 05:27 | |
*** achanda has joined #openstack-dev | 05:27 | |
*** yamamot__ has joined #openstack-dev | 05:27 | |
*** davideagnello has joined #openstack-dev | 05:28 | |
*** bradjones has joined #openstack-dev | 05:30 | |
*** yamamoto_ has quit IRC | 05:31 | |
*** yaguang has joined #openstack-dev | 05:31 | |
*** zhiwei has quit IRC | 05:32 | |
*** davideagnello has quit IRC | 05:33 | |
*** utlemming has joined #openstack-dev | 05:37 | |
*** etoews has joined #openstack-dev | 05:37 | |
*** BharatK has quit IRC | 05:39 | |
*** sarob has quit IRC | 05:40 | |
*** mtreinish has quit IRC | 05:40 | |
*** etoews has quit IRC | 05:44 | |
*** eghobo has quit IRC | 05:44 | |
*** zhiwei has joined #openstack-dev | 05:46 | |
*** Nikolay_St has quit IRC | 05:47 | |
*** lpetrut has joined #openstack-dev | 05:48 | |
*** Mandell has quit IRC | 05:49 | |
*** r1chardj0n3s is now known as r1chardj0n3s_afk | 05:49 | |
*** gongysh has joined #openstack-dev | 05:52 | |
*** dims has joined #openstack-dev | 05:52 | |
*** Marga_ has joined #openstack-dev | 05:53 | |
*** Marga_ has quit IRC | 05:53 | |
*** Marga_ has joined #openstack-dev | 05:54 | |
*** nshaikh has joined #openstack-dev | 05:55 | |
*** topol has quit IRC | 05:55 | |
*** hemna has quit IRC | 05:55 | |
*** BharatK has joined #openstack-dev | 05:55 | |
*** mtreinish has joined #openstack-dev | 05:56 | |
*** dims has quit IRC | 05:57 | |
*** coolsvap_ is now known as coolsvap | 05:57 | |
*** Mandell has joined #openstack-dev | 05:57 | |
*** annashen has quit IRC | 05:59 | |
*** ybathia has quit IRC | 05:59 | |
*** achanda has quit IRC | 06:00 | |
*** annashen has joined #openstack-dev | 06:01 | |
*** _gryf|afk is now known as _gryf | 06:02 | |
*** hnakil has quit IRC | 06:02 | |
*** achanda has joined #openstack-dev | 06:05 | |
*** nihilifer has joined #openstack-dev | 06:05 | |
*** anish__ has joined #openstack-dev | 06:05 | |
*** anish_ has quit IRC | 06:06 | |
*** markvoelker has quit IRC | 06:08 | |
*** achanda has quit IRC | 06:13 | |
*** jobewan has quit IRC | 06:15 | |
*** k4n0 has joined #openstack-dev | 06:17 | |
*** annashen has quit IRC | 06:17 | |
*** enykeev has joined #openstack-dev | 06:17 | |
*** vikram has joined #openstack-dev | 06:19 | |
vikram | hi | 06:19 |
*** hdd has quit IRC | 06:19 | |
vikram | i have a question about devstack | 06:19 |
vikram | can anyone help me out? | 06:19 |
stevemar | vikram, just ask away, don't wait for permission :) | 06:20 |
*** kgriffs|afk is now known as kgriffs | 06:21 | |
*** PingKuo has quit IRC | 06:21 | |
*** SridharG has joined #openstack-dev | 06:21 | |
*** Sukhdev has quit IRC | 06:22 | |
*** numan has joined #openstack-dev | 06:22 | |
*** asettle has quit IRC | 06:22 | |
*** vigneshvar has joined #openstack-dev | 06:22 | |
*** gongysh has quit IRC | 06:24 | |
*** r1chardj0n3s_afk is now known as r1chardj0n3s | 06:27 | |
*** kgriffs is now known as kgriffs|afk | 06:30 | |
*** itzikb has joined #openstack-dev | 06:31 | |
*** ijw has quit IRC | 06:34 | |
*** zaitcev has quit IRC | 06:35 | |
*** achanda has joined #openstack-dev | 06:35 | |
*** pradeep has quit IRC | 06:37 | |
*** r1chardj0n3s is now known as r1chardj0n3s_afk | 06:39 | |
*** markvoelker has joined #openstack-dev | 06:39 | |
*** etoews has joined #openstack-dev | 06:41 | |
*** gamado has joined #openstack-dev | 06:42 | |
*** markvoelker has quit IRC | 06:43 | |
*** etoews has quit IRC | 06:45 | |
*** nshaikh has quit IRC | 06:50 | |
*** gaughen has joined #openstack-dev | 06:50 | |
*** AnilV4 has joined #openstack-dev | 06:50 | |
*** nshaikh has joined #openstack-dev | 06:51 | |
*** zz_avozza is now known as avozza | 06:52 | |
*** mkolesni has joined #openstack-dev | 06:53 | |
*** pradeep has joined #openstack-dev | 06:54 | |
*** avozza is now known as zz_avozza | 06:56 | |
*** gargola has quit IRC | 06:58 | |
*** gargola_ has joined #openstack-dev | 06:59 | |
*** vikram has quit IRC | 07:00 | |
*** Mandell has quit IRC | 07:01 | |
*** jyuso1 has joined #openstack-dev | 07:03 | |
*** Mandell has joined #openstack-dev | 07:04 | |
*** mrunge has joined #openstack-dev | 07:05 | |
*** stevemar has quit IRC | 07:06 | |
*** utlemming has quit IRC | 07:08 | |
*** shaohe_robot has joined #openstack-dev | 07:08 | |
*** BharatK has quit IRC | 07:08 | |
*** pradeep has quit IRC | 07:08 | |
*** BharatK has joined #openstack-dev | 07:09 | |
*** utlemming has joined #openstack-dev | 07:09 | |
*** utlemming has joined #openstack-dev | 07:09 | |
*** ukalifon1 has joined #openstack-dev | 07:09 | |
*** harlowja_at_home has joined #openstack-dev | 07:10 | |
*** utlemming has quit IRC | 07:10 | |
*** ssurana has joined #openstack-dev | 07:10 | |
*** [1]evgenyf has quit IRC | 07:11 | |
*** obondarev has joined #openstack-dev | 07:11 | |
*** otter768 has joined #openstack-dev | 07:11 | |
*** sputnik13 has quit IRC | 07:12 | |
*** vikram has joined #openstack-dev | 07:13 | |
*** nellysmitt has joined #openstack-dev | 07:13 | |
*** pradeep has joined #openstack-dev | 07:14 | |
*** neeti has joined #openstack-dev | 07:15 | |
*** otter768 has quit IRC | 07:16 | |
*** sputnik13 has joined #openstack-dev | 07:16 | |
*** c^ has quit IRC | 07:17 | |
*** nellysmitt has quit IRC | 07:18 | |
*** shaohe_feng has joined #openstack-dev | 07:20 | |
*** dtantsur|afk is now known as dtantsur | 07:22 | |
*** [1]evgenyf has joined #openstack-dev | 07:23 | |
*** macjack has quit IRC | 07:31 | |
*** vikram has quit IRC | 07:32 | |
*** macjack has joined #openstack-dev | 07:34 | |
*** ngoracke has quit IRC | 07:35 | |
*** amalagon has quit IRC | 07:36 | |
*** egallen has joined #openstack-dev | 07:36 | |
*** belmoreira has joined #openstack-dev | 07:36 | |
*** egallen has quit IRC | 07:37 | |
*** davideagnello has joined #openstack-dev | 07:38 | |
*** markvoelker has joined #openstack-dev | 07:39 | |
*** Nikolay_St has joined #openstack-dev | 07:41 | |
*** lpetrut has quit IRC | 07:42 | |
*** nellysmitt has joined #openstack-dev | 07:42 | |
*** davideagnello has quit IRC | 07:43 | |
*** markvoelker has quit IRC | 07:44 | |
*** vikram has joined #openstack-dev | 07:44 | |
*** achanda has quit IRC | 07:46 | |
*** slupers has joined #openstack-dev | 07:47 | |
*** marun has joined #openstack-dev | 07:49 | |
*** jgallard_ has joined #openstack-dev | 07:49 | |
*** vicky_ has quit IRC | 07:50 | |
*** yamamot__ has quit IRC | 07:52 | |
*** marun has quit IRC | 07:53 | |
*** jcoufal has joined #openstack-dev | 07:54 | |
*** zz_avozza is now known as avozza | 07:55 | |
*** dulek has joined #openstack-dev | 07:57 | |
*** scheuran has joined #openstack-dev | 07:57 | |
*** noslzzp has joined #openstack-dev | 07:58 | |
*** achanda has joined #openstack-dev | 08:01 | |
*** harlowja_at_home has quit IRC | 08:02 | |
*** kushal has quit IRC | 08:03 | |
*** armax has quit IRC | 08:03 | |
*** ncoghlan has quit IRC | 08:04 | |
*** nkinder has joined #openstack-dev | 08:08 | |
*** egallen has joined #openstack-dev | 08:10 | |
*** noslzzp has quit IRC | 08:10 | |
*** noslzzp has joined #openstack-dev | 08:12 | |
*** sahid has joined #openstack-dev | 08:12 | |
*** lpetrut has joined #openstack-dev | 08:13 | |
*** SridharG has quit IRC | 08:14 | |
*** SridharG1 has joined #openstack-dev | 08:14 | |
*** kushal has joined #openstack-dev | 08:16 | |
*** doude has joined #openstack-dev | 08:18 | |
*** yamamoto_ has joined #openstack-dev | 08:19 | |
*** egallen has quit IRC | 08:21 | |
*** vikram has quit IRC | 08:22 | |
*** markus_z has joined #openstack-dev | 08:23 | |
*** yamamoto_ has quit IRC | 08:24 | |
*** achanda has quit IRC | 08:26 | |
*** avozza is now known as zz_avozza | 08:26 | |
*** yamamoto_ has joined #openstack-dev | 08:26 | |
*** nmagnezi has joined #openstack-dev | 08:27 | |
*** jistr has joined #openstack-dev | 08:29 | |
*** jaosorior has joined #openstack-dev | 08:29 | |
*** doron_afk has joined #openstack-dev | 08:30 | |
*** doron_afk is now known as Guest87423 | 08:31 | |
*** vikram has joined #openstack-dev | 08:35 | |
*** sergmelikyan has joined #openstack-dev | 08:38 | |
*** markvoelker has joined #openstack-dev | 08:40 | |
*** Mandell has quit IRC | 08:40 | |
*** yamamoto_ has quit IRC | 08:41 | |
*** etoews has joined #openstack-dev | 08:42 | |
*** anish__ has quit IRC | 08:45 | |
*** markvoelker has quit IRC | 08:45 | |
*** kushal has quit IRC | 08:46 | |
*** etoews has quit IRC | 08:47 | |
*** MaxV has joined #openstack-dev | 08:49 | |
*** gongysh has joined #openstack-dev | 08:52 | |
*** anish_ has joined #openstack-dev | 08:52 | |
*** stanzgy has quit IRC | 08:52 | |
*** kolesovdv has joined #openstack-dev | 08:52 | |
*** jordanP has joined #openstack-dev | 08:53 | |
*** vikram has quit IRC | 08:54 | |
*** SridharG has joined #openstack-dev | 08:54 | |
*** gongysh has quit IRC | 08:54 | |
*** SridharG1 has quit IRC | 08:54 | |
*** matrohon has joined #openstack-dev | 08:54 | |
*** stanzgy has joined #openstack-dev | 08:54 | |
*** gongysh has joined #openstack-dev | 08:55 | |
*** gongysh has quit IRC | 08:55 | |
*** gongysh has joined #openstack-dev | 08:55 | |
*** jpich has joined #openstack-dev | 08:55 | |
*** cdub has quit IRC | 08:55 | |
*** gongysh_ has joined #openstack-dev | 08:56 | |
*** ygbo has joined #openstack-dev | 08:57 | |
*** Guest87423 is now known as doron_afk | 09:00 | |
*** Ananci has quit IRC | 09:04 | |
*** jprovazn has joined #openstack-dev | 09:05 | |
*** athomas has joined #openstack-dev | 09:08 | |
*** gongysh_ has quit IRC | 09:09 | |
*** gongysh has quit IRC | 09:09 | |
*** gongysh has joined #openstack-dev | 09:09 | |
*** mpaolino has joined #openstack-dev | 09:10 | |
*** ghostpl has joined #openstack-dev | 09:11 | |
*** huats has joined #openstack-dev | 09:12 | |
*** om has quit IRC | 09:12 | |
*** otter768 has joined #openstack-dev | 09:12 | |
*** rohitk has quit IRC | 09:13 | |
*** gaughen has quit IRC | 09:14 | |
*** cfriesen_ has quit IRC | 09:16 | |
*** gthouvenin has joined #openstack-dev | 09:16 | |
*** otter768 has quit IRC | 09:17 | |
*** huats has left #openstack-dev | 09:18 | |
*** jordanP has quit IRC | 09:18 | |
*** safchain has joined #openstack-dev | 09:19 | |
*** belmoreira has quit IRC | 09:21 | |
*** gthouvenin has quit IRC | 09:21 | |
*** gthouvenin has joined #openstack-dev | 09:22 | |
*** gthouvenin is now known as tuvenen | 09:22 | |
*** belmoreira has joined #openstack-dev | 09:22 | |
*** om has joined #openstack-dev | 09:25 | |
*** afazekas has joined #openstack-dev | 09:25 | |
*** jordanP has joined #openstack-dev | 09:25 | |
*** jordanP has quit IRC | 09:25 | |
*** rohitk has joined #openstack-dev | 09:26 | |
*** mpaolino has quit IRC | 09:26 | |
*** derekh has joined #openstack-dev | 09:27 | |
*** mpaolino has joined #openstack-dev | 09:27 | |
*** bauzas has quit IRC | 09:29 | |
*** jckasper has quit IRC | 09:30 | |
*** bauzas has joined #openstack-dev | 09:30 | |
*** slupers_ has joined #openstack-dev | 09:31 | |
flaper87 | ttx: no idea how I missed L40 in that review T_T | 09:31 |
flaper87 | thanks | 09:31 |
*** zz_johnthetubagu is now known as johnthetubaguy | 09:33 | |
*** slupers has quit IRC | 09:34 | |
*** slupers_ has quit IRC | 09:34 | |
*** slupers has joined #openstack-dev | 09:35 | |
*** salv-orlando has joined #openstack-dev | 09:37 | |
*** slupers has quit IRC | 09:39 | |
*** boris-42 has joined #openstack-dev | 09:39 | |
*** markvoelker has joined #openstack-dev | 09:41 | |
*** anish_ has quit IRC | 09:46 | |
*** markvoelker has quit IRC | 09:47 | |
*** anish_ has joined #openstack-dev | 09:47 | |
*** igordcard has joined #openstack-dev | 09:49 | |
*** gaughen has joined #openstack-dev | 09:49 | |
*** MattMan has joined #openstack-dev | 09:49 | |
*** anish_ has quit IRC | 09:49 | |
*** llu has quit IRC | 09:50 | |
*** llu has joined #openstack-dev | 09:50 | |
*** anish_ has joined #openstack-dev | 09:50 | |
*** jcoufal_ has joined #openstack-dev | 09:52 | |
*** jcoufal has quit IRC | 09:53 | |
*** enterprisedc has quit IRC | 09:54 | |
*** igordcard has quit IRC | 09:54 | |
*** amalagon has joined #openstack-dev | 09:57 | |
*** franred has joined #openstack-dev | 09:58 | |
*** jordanP has joined #openstack-dev | 09:58 | |
*** amalagon has quit IRC | 10:02 | |
*** gongysh has quit IRC | 10:03 | |
*** wierenga has quit IRC | 10:03 | |
*** SridharG has quit IRC | 10:04 | |
*** scheuran has quit IRC | 10:04 | |
*** paragan has quit IRC | 10:05 | |
*** davideagnello has joined #openstack-dev | 10:05 | |
*** Ala has joined #openstack-dev | 10:06 | |
*** exploreshaifali has joined #openstack-dev | 10:07 | |
*** andreykurilin_ has joined #openstack-dev | 10:08 | |
*** SridharG has joined #openstack-dev | 10:10 | |
*** franred has quit IRC | 10:11 | |
*** ihrachyshka has joined #openstack-dev | 10:12 | |
*** blues-man has joined #openstack-dev | 10:12 | |
*** jtomasek has joined #openstack-dev | 10:12 | |
*** tserong has quit IRC | 10:13 | |
*** dtantsur is now known as dtantsur|bbl | 10:13 | |
*** gongysh has joined #openstack-dev | 10:15 | |
*** franred has joined #openstack-dev | 10:15 | |
*** scheuran has joined #openstack-dev | 10:18 | |
*** tserong has joined #openstack-dev | 10:19 | |
*** noslzzp has quit IRC | 10:19 | |
*** pasquier-s has quit IRC | 10:21 | |
*** franred has quit IRC | 10:21 | |
*** oro has joined #openstack-dev | 10:23 | |
*** gongysh has quit IRC | 10:26 | |
*** zhiwei has quit IRC | 10:26 | |
*** wierenga has joined #openstack-dev | 10:27 | |
*** franred has joined #openstack-dev | 10:28 | |
*** pasquier-s has joined #openstack-dev | 10:36 | |
*** mpaolino has quit IRC | 10:38 | |
*** navid__ has joined #openstack-dev | 10:39 | |
*** nshaikh has quit IRC | 10:40 | |
*** noslzzp has joined #openstack-dev | 10:41 | |
*** gaughen has quit IRC | 10:42 | |
*** aloga has quit IRC | 10:42 | |
*** markvoelker has joined #openstack-dev | 10:43 | |
*** neoXsys has quit IRC | 10:43 | |
*** athomas has quit IRC | 10:44 | |
*** neoXsys has joined #openstack-dev | 10:45 | |
*** jasondotstar has joined #openstack-dev | 10:46 | |
*** gongysh has joined #openstack-dev | 10:46 | |
*** jaosorior has quit IRC | 10:46 | |
*** jp_at_hp has joined #openstack-dev | 10:46 | |
*** alexpilotti has joined #openstack-dev | 10:47 | |
*** akrivoka has joined #openstack-dev | 10:47 | |
*** stanzgy has quit IRC | 10:47 | |
*** r1chardj0n3s_afk is now known as r1chardj0n3s | 10:47 | |
*** markvoelker has quit IRC | 10:48 | |
*** gargola_ has quit IRC | 10:48 | |
*** pelix has joined #openstack-dev | 10:48 | |
*** belmoreira has quit IRC | 10:48 | |
*** aloga has joined #openstack-dev | 10:50 | |
*** oro has quit IRC | 10:50 | |
*** enterprisedc has joined #openstack-dev | 10:50 | |
*** mpaolino has joined #openstack-dev | 10:50 | |
*** gargola has joined #openstack-dev | 10:51 | |
*** Artpicre has quit IRC | 10:51 | |
*** athomas has joined #openstack-dev | 10:51 | |
*** haomaiwang has quit IRC | 10:51 | |
*** rushiagr has quit IRC | 10:52 | |
*** yolanda has quit IRC | 10:54 | |
*** yolanda has joined #openstack-dev | 10:54 | |
*** Guest92134 has joined #openstack-dev | 10:55 | |
*** Longgeek has joined #openstack-dev | 10:55 | |
*** dtantsur|bbl is now known as dtantsur | 10:56 | |
*** vigneshvar has quit IRC | 10:57 | |
*** dims has joined #openstack-dev | 10:57 | |
*** dims has quit IRC | 11:01 | |
*** rushiagr has joined #openstack-dev | 11:02 | |
*** yaguang has quit IRC | 11:02 | |
*** dims has joined #openstack-dev | 11:02 | |
*** vigneshvar has joined #openstack-dev | 11:02 | |
*** navid__ is now known as nshaikh | 11:03 | |
*** adalbas has joined #openstack-dev | 11:03 | |
*** ihrachyshka has quit IRC | 11:04 | |
*** cdent has joined #openstack-dev | 11:06 | |
*** tchaypo1 has quit IRC | 11:08 | |
*** topol has joined #openstack-dev | 11:10 | |
*** paragan has joined #openstack-dev | 11:12 | |
*** otter768 has joined #openstack-dev | 11:13 | |
*** aysyd has joined #openstack-dev | 11:14 | |
*** tnovacik has joined #openstack-dev | 11:17 | |
*** otter768 has quit IRC | 11:17 | |
*** aveek has joined #openstack-dev | 11:20 | |
*** andreykurilin_ has quit IRC | 11:20 | |
*** YorikSar has joined #openstack-dev | 11:21 | |
*** YorikSar has left #openstack-dev | 11:22 | |
*** gfidente has joined #openstack-dev | 11:23 | |
*** claudiub has joined #openstack-dev | 11:24 | |
*** rohitk has quit IRC | 11:25 | |
*** tnovacik has quit IRC | 11:28 | |
*** Longgeek has quit IRC | 11:33 | |
*** scheuran has quit IRC | 11:34 | |
*** tnovacik has joined #openstack-dev | 11:34 | |
*** sputnik13 has quit IRC | 11:38 | |
*** yaguang has joined #openstack-dev | 11:39 | |
*** wierenga_ has joined #openstack-dev | 11:40 | |
*** deepthi has quit IRC | 11:42 | |
*** pschaef has joined #openstack-dev | 11:42 | |
*** rohitk has joined #openstack-dev | 11:42 | |
*** ghostpl has quit IRC | 11:43 | |
*** markvoelker has joined #openstack-dev | 11:44 | |
*** aveek has quit IRC | 11:44 | |
*** dsirrine has quit IRC | 11:44 | |
*** mattfarina has joined #openstack-dev | 11:44 | |
*** pc_m has joined #openstack-dev | 11:45 | |
*** oro has joined #openstack-dev | 11:46 | |
*** gaughen has joined #openstack-dev | 11:47 | |
*** tnovacik has quit IRC | 11:47 | |
*** BharatK has quit IRC | 11:48 | |
*** pixelbeat has joined #openstack-dev | 11:48 | |
*** scheuran has joined #openstack-dev | 11:49 | |
*** markvoelker has quit IRC | 11:49 | |
*** wierenga_ has quit IRC | 11:49 | |
*** ssurana has quit IRC | 11:50 | |
*** ihrachyshka has joined #openstack-dev | 11:52 | |
*** xingchao has quit IRC | 11:53 | |
*** rtheis has joined #openstack-dev | 11:54 | |
*** diegows has joined #openstack-dev | 11:57 | |
*** pasquier-s has quit IRC | 11:58 | |
*** david-lyle_afk is now known as david-lyle | 12:01 | |
*** corXi has joined #openstack-dev | 12:06 | |
*** aveek has joined #openstack-dev | 12:09 | |
*** mwang2_ has joined #openstack-dev | 12:10 | |
*** ghostpl has joined #openstack-dev | 12:10 | |
*** tnovacik has joined #openstack-dev | 12:10 | |
*** amalagon has joined #openstack-dev | 12:10 | |
*** bradjones has quit IRC | 12:11 | |
*** MIDENN_ has joined #openstack-dev | 12:13 | |
*** hemna_ has joined #openstack-dev | 12:13 | |
*** Woodie has joined #openstack-dev | 12:13 | |
*** pasquier-s has joined #openstack-dev | 12:13 | |
*** jyuso has joined #openstack-dev | 12:13 | |
*** guitarza1 has joined #openstack-dev | 12:13 | |
*** alexpilotti has quit IRC | 12:13 | |
*** gargola_ has joined #openstack-dev | 12:14 | |
*** bradjones has joined #openstack-dev | 12:14 | |
*** Anticime1 has joined #openstack-dev | 12:15 | |
*** trown|call has joined #openstack-dev | 12:16 | |
*** yatin_ has joined #openstack-dev | 12:16 | |
*** clayg_ has joined #openstack-dev | 12:17 | |
*** ilyashakhat_ has joined #openstack-dev | 12:17 | |
*** danjared_ has joined #openstack-dev | 12:17 | |
*** FunnyLookinHat has joined #openstack-dev | 12:17 | |
*** rodrigod` has joined #openstack-dev | 12:18 | |
*** subscope has quit IRC | 12:19 | |
*** subscope has joined #openstack-dev | 12:20 | |
*** aveek has quit IRC | 12:20 | |
*** gargola has quit IRC | 12:20 | |
*** jasondotstar has quit IRC | 12:20 | |
*** afazekas has quit IRC | 12:20 | |
*** kolesovdv has quit IRC | 12:20 | |
*** jyuso1 has quit IRC | 12:20 | |
*** yatin has quit IRC | 12:20 | |
*** coasterz has quit IRC | 12:20 | |
*** lexano has quit IRC | 12:20 | |
*** mdenny has quit IRC | 12:20 | |
*** W00die has quit IRC | 12:20 | |
*** mwang2 has quit IRC | 12:20 | |
*** trown has quit IRC | 12:20 | |
*** mwagner_lap has quit IRC | 12:20 | |
*** clayg has quit IRC | 12:20 | |
*** Anticimex has quit IRC | 12:20 | |
*** danjared has quit IRC | 12:20 | |
*** zul has quit IRC | 12:20 | |
*** hemnafk has quit IRC | 12:20 | |
*** epopt37 has quit IRC | 12:20 | |
*** rodrigods has quit IRC | 12:20 | |
*** ilyashakhat has quit IRC | 12:20 | |
*** sbadia has quit IRC | 12:20 | |
*** guitarzan has quit IRC | 12:20 | |
*** rodrigod` is now known as rodrigods | 12:22 | |
*** rodrigods has quit IRC | 12:22 | |
*** rodrigods has joined #openstack-dev | 12:22 | |
*** claudiub has quit IRC | 12:25 | |
*** epopt37 has joined #openstack-dev | 12:26 | |
*** sbadia has joined #openstack-dev | 12:26 | |
*** afazekas has joined #openstack-dev | 12:27 | |
*** coasterz has joined #openstack-dev | 12:27 | |
*** mwagner_lap has joined #openstack-dev | 12:27 | |
*** EmilienM|afk is now known as EmilienM | 12:27 | |
*** lexano has joined #openstack-dev | 12:27 | |
*** kolesovdv has joined #openstack-dev | 12:27 | |
*** viktors has joined #openstack-dev | 12:28 | |
*** zul has joined #openstack-dev | 12:28 | |
*** davideagnello has quit IRC | 12:34 | |
*** david-lyle is now known as david-lyle_afk | 12:36 | |
*** ihrachyshka_ has joined #openstack-dev | 12:36 | |
*** ihrachyshka has quit IRC | 12:36 | |
*** baoli_ has joined #openstack-dev | 12:36 | |
*** david-lyle_afk is now known as david-lyle | 12:36 | |
*** baoli_ has quit IRC | 12:40 | |
*** thrash|g0ne is now known as thrash | 12:40 | |
*** baoli has joined #openstack-dev | 12:40 | |
*** Mandell has joined #openstack-dev | 12:41 | |
*** mpaolino has quit IRC | 12:43 | |
*** juice has quit IRC | 12:43 | |
*** zz_avozza is now known as avozza | 12:43 | |
*** david-lyle is now known as david-lyle_afk | 12:44 | |
*** david-lyle_afk is now known as david-lyle | 12:45 | |
*** markvoelker has joined #openstack-dev | 12:45 | |
*** jaosorior has joined #openstack-dev | 12:45 | |
*** blues-man has left #openstack-dev | 12:46 | |
*** blues-man has quit IRC | 12:46 | |
*** Mandell has quit IRC | 12:46 | |
*** juice has joined #openstack-dev | 12:46 | |
*** markvoelker has quit IRC | 12:49 | |
*** yaguang has quit IRC | 12:50 | |
*** MalteJ has left #openstack-dev | 12:53 | |
*** yatin_ has left #openstack-dev | 12:53 | |
*** lon has quit IRC | 12:57 | |
*** lon has joined #openstack-dev | 12:58 | |
*** claudiub has joined #openstack-dev | 12:58 | |
*** juice has quit IRC | 12:59 | |
*** esmute has quit IRC | 12:59 | |
*** vipul has quit IRC | 12:59 | |
*** NobodyCam has quit IRC | 13:00 | |
*** BadCub has quit IRC | 13:01 | |
*** gongysh has quit IRC | 13:02 | |
*** esmute has joined #openstack-dev | 13:03 | |
*** rohitk has quit IRC | 13:03 | |
*** vipul has joined #openstack-dev | 13:03 | |
*** juice has joined #openstack-dev | 13:03 | |
*** dprince has joined #openstack-dev | 13:07 | |
*** BadCub has joined #openstack-dev | 13:07 | |
*** NobodyCam has joined #openstack-dev | 13:07 | |
*** neeti has quit IRC | 13:07 | |
*** r1chardj0n3s is now known as r1chardj0n3s_afk | 13:07 | |
*** Networkn3rd has quit IRC | 13:08 | |
*** tdruiva has joined #openstack-dev | 13:10 | |
*** dims has quit IRC | 13:10 | |
*** nkinder has quit IRC | 13:10 | |
*** bknudson has joined #openstack-dev | 13:11 | |
*** shaohe_feng has quit IRC | 13:14 | |
*** otter768 has joined #openstack-dev | 13:14 | |
*** toddnni has quit IRC | 13:14 | |
*** Riddhi has joined #openstack-dev | 13:15 | |
*** gongysh has joined #openstack-dev | 13:15 | |
*** Riddhi has quit IRC | 13:16 | |
*** Riddhi has joined #openstack-dev | 13:17 | |
*** CrabbyTravvy has joined #openstack-dev | 13:17 | |
*** dims has joined #openstack-dev | 13:19 | |
*** otter768 has quit IRC | 13:19 | |
*** markvoelker has joined #openstack-dev | 13:20 | |
*** prad has joined #openstack-dev | 13:21 | |
*** nelsnelson has quit IRC | 13:22 | |
*** rohitk has joined #openstack-dev | 13:22 | |
*** galstrom_zzz is now known as galstrom | 13:23 | |
*** nelsnelson has joined #openstack-dev | 13:23 | |
*** ajc_ has quit IRC | 13:24 | |
*** andreaf_ is now known as andreaf | 13:25 | |
*** hdd has joined #openstack-dev | 13:26 | |
*** rtheis_ has joined #openstack-dev | 13:27 | |
*** dims has quit IRC | 13:28 | |
*** Ephur has joined #openstack-dev | 13:28 | |
*** pradeep has quit IRC | 13:29 | |
*** htruta has quit IRC | 13:29 | |
*** ghostpl has quit IRC | 13:29 | |
*** rtheis has quit IRC | 13:30 | |
*** amuller has joined #openstack-dev | 13:30 | |
*** prad has quit IRC | 13:31 | |
*** rohitk has quit IRC | 13:31 | |
*** yaguang has joined #openstack-dev | 13:31 | |
*** om has quit IRC | 13:31 | |
*** ngoracke has joined #openstack-dev | 13:32 | |
*** doude has quit IRC | 13:33 | |
*** topol has quit IRC | 13:33 | |
*** nshaikh has quit IRC | 13:34 | |
*** nshaikh has joined #openstack-dev | 13:35 | |
*** kgiusti has joined #openstack-dev | 13:36 | |
*** tdruiva_ has joined #openstack-dev | 13:37 | |
*** htruta has joined #openstack-dev | 13:37 | |
*** CrabbyTravvy has quit IRC | 13:39 | |
*** ghostpl has joined #openstack-dev | 13:39 | |
*** yaguang has quit IRC | 13:39 | |
*** thrash has quit IRC | 13:39 | |
*** tdruiva has quit IRC | 13:40 | |
*** nshaikh has quit IRC | 13:41 | |
*** raildo_away is now known as raildo | 13:41 | |
*** mlsoule has joined #openstack-dev | 13:43 | |
*** vigneshvar has quit IRC | 13:43 | |
*** trown|call is now known as trown | 13:43 | |
*** doude has joined #openstack-dev | 13:44 | |
*** rushiagr is now known as rushiagr_away | 13:45 | |
*** mrunge has quit IRC | 13:47 | |
*** pc_m has quit IRC | 13:48 | |
*** yaguang has joined #openstack-dev | 13:48 | |
*** amitgandhinz has joined #openstack-dev | 13:49 | |
*** Nikolay_St has quit IRC | 13:53 | |
*** thomasem has joined #openstack-dev | 13:54 | |
*** neelashah has joined #openstack-dev | 13:54 | |
*** oro has quit IRC | 13:55 | |
*** exploreshaifali has quit IRC | 13:56 | |
*** etoews has joined #openstack-dev | 13:56 | |
*** anish_ has quit IRC | 13:58 | |
*** jckasper has joined #openstack-dev | 14:01 | |
*** pc_m has joined #openstack-dev | 14:01 | |
*** yamamoto has joined #openstack-dev | 14:02 | |
*** gszasz has joined #openstack-dev | 14:02 | |
*** etoews has quit IRC | 14:03 | |
*** thomasem has quit IRC | 14:03 | |
*** thomasem has joined #openstack-dev | 14:04 | |
*** thomasem has quit IRC | 14:05 | |
*** thomasem has joined #openstack-dev | 14:05 | |
*** dulek has quit IRC | 14:06 | |
*** dustins has joined #openstack-dev | 14:07 | |
*** dulek has joined #openstack-dev | 14:07 | |
*** jhesketh has quit IRC | 14:07 | |
*** kbringard has joined #openstack-dev | 14:08 | |
*** jhesketh has joined #openstack-dev | 14:09 | |
*** galstrom is now known as galstrom_zzz | 14:09 | |
*** kobis has joined #openstack-dev | 14:10 | |
*** dkranz has joined #openstack-dev | 14:10 | |
*** pradeep has joined #openstack-dev | 14:11 | |
*** belmoreira has joined #openstack-dev | 14:11 | |
*** hdd has quit IRC | 14:12 | |
*** kaufer has joined #openstack-dev | 14:12 | |
ttx | L naming poll now open: http://lists.openstack.org/pipermail/openstack/2015-February/011389.html | 14:13 |
*** reed has joined #openstack-dev | 14:14 | |
*** pradeep1 has joined #openstack-dev | 14:15 | |
*** cbader has joined #openstack-dev | 14:15 | |
*** pradeep has quit IRC | 14:16 | |
*** prazumovsky has joined #openstack-dev | 14:16 | |
*** gargola_ has quit IRC | 14:16 | |
*** Marga_ has quit IRC | 14:17 | |
*** mpaolino has joined #openstack-dev | 14:17 | |
*** kolesovdv has quit IRC | 14:18 | |
*** rushiagr_away is now known as rushiagr | 14:18 | |
*** jckasper has quit IRC | 14:18 | |
*** cdub has joined #openstack-dev | 14:18 | |
*** jckasper has joined #openstack-dev | 14:19 | |
*** kobis has quit IRC | 14:21 | |
*** FunnyLookinHat has quit IRC | 14:26 | |
*** gaughen has quit IRC | 14:26 | |
*** erlon has quit IRC | 14:26 | |
*** Mandell has joined #openstack-dev | 14:28 | |
*** jecarey has quit IRC | 14:28 | |
*** dims has joined #openstack-dev | 14:29 | |
*** nkinder has joined #openstack-dev | 14:31 | |
*** zaitcev has joined #openstack-dev | 14:32 | |
*** dims_ has joined #openstack-dev | 14:33 | |
*** Longgeek has joined #openstack-dev | 14:33 | |
*** ZZelle has quit IRC | 14:34 | |
*** ZZelle has joined #openstack-dev | 14:35 | |
*** Longgeek has quit IRC | 14:35 | |
*** tiswanso has joined #openstack-dev | 14:36 | |
*** siwsky has joined #openstack-dev | 14:37 | |
*** dims has quit IRC | 14:37 | |
*** gaughen has joined #openstack-dev | 14:40 | |
*** Mandell has quit IRC | 14:41 | |
*** noslzzp has quit IRC | 14:41 | |
*** vladikr has joined #openstack-dev | 14:41 | |
*** baoli has quit IRC | 14:41 | |
*** noslzzp has joined #openstack-dev | 14:42 | |
*** nelsnelson has quit IRC | 14:42 | |
*** baoli has joined #openstack-dev | 14:43 | |
*** andrearo1 has joined #openstack-dev | 14:43 | |
*** cfriesen_ has joined #openstack-dev | 14:43 | |
*** rohitk has joined #openstack-dev | 14:44 | |
*** andreaf_ has joined #openstack-dev | 14:44 | |
*** mriedem has joined #openstack-dev | 14:45 | |
*** andreaf has quit IRC | 14:45 | |
*** andreaf_ is now known as andreaf | 14:45 | |
*** andrearosa has quit IRC | 14:45 | |
*** dulek has quit IRC | 14:46 | |
*** packet has joined #openstack-dev | 14:47 | |
*** Ctina has joined #openstack-dev | 14:47 | |
*** dulek has joined #openstack-dev | 14:47 | |
*** Nikolay_St has joined #openstack-dev | 14:49 | |
*** pradeep has joined #openstack-dev | 14:50 | |
*** FunnyLookinHat has joined #openstack-dev | 14:50 | |
*** etoews has joined #openstack-dev | 14:51 | |
*** zzz_jasonamyers is now known as jasonamyers | 14:51 | |
*** pradeep1 has quit IRC | 14:51 | |
*** Guest17528 is now known as rcj | 14:51 | |
*** rcj is now known as Guest81467 | 14:52 | |
*** andrearo1 is now known as andrearosa | 14:52 | |
*** derekh has quit IRC | 14:53 | |
*** gongysh has quit IRC | 14:53 | |
*** mpetason has joined #openstack-dev | 14:54 | |
*** achampio1 has quit IRC | 14:54 | |
*** signed8bit has joined #openstack-dev | 14:54 | |
*** AnilV4 has quit IRC | 14:55 | |
*** yaguang has quit IRC | 14:55 | |
*** ghostpl has quit IRC | 14:56 | |
*** ghostpl has joined #openstack-dev | 14:57 | |
*** hemna has joined #openstack-dev | 14:57 | |
*** ghostpl has quit IRC | 14:57 | |
*** tiswanso has quit IRC | 14:59 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 15:00 | |
*** dustins_ has joined #openstack-dev | 15:00 | |
*** achampion has joined #openstack-dev | 15:01 | |
*** tiswanso has joined #openstack-dev | 15:01 | |
*** dimtruck is now known as zz_dimtruck | 15:01 | |
*** derekh has joined #openstack-dev | 15:01 | |
*** itzikb has quit IRC | 15:02 | |
*** tnovacik has quit IRC | 15:02 | |
*** pradeep1 has joined #openstack-dev | 15:02 | |
*** pradeep has quit IRC | 15:02 | |
*** kgiusti has quit IRC | 15:02 | |
*** timsim has joined #openstack-dev | 15:02 | |
*** utlemming has joined #openstack-dev | 15:03 | |
*** utlemming has joined #openstack-dev | 15:03 | |
*** dustins has quit IRC | 15:03 | |
*** signed8bit is now known as signed8bit_ZZZzz | 15:03 | |
*** marun has joined #openstack-dev | 15:04 | |
*** thangp has joined #openstack-dev | 15:04 | |
*** nkinder has quit IRC | 15:04 | |
*** ajayaa has quit IRC | 15:04 | |
*** utlemming has quit IRC | 15:04 | |
*** thrash has joined #openstack-dev | 15:04 | |
*** kgiusti has joined #openstack-dev | 15:05 | |
*** nkinder has joined #openstack-dev | 15:06 | |
*** AnilV4 has joined #openstack-dev | 15:06 | |
*** pradeep has joined #openstack-dev | 15:08 | |
*** marun has quit IRC | 15:08 | |
*** kobis has joined #openstack-dev | 15:08 | |
*** ijw has joined #openstack-dev | 15:09 | |
*** pradeep1 has quit IRC | 15:09 | |
*** jcoufal has joined #openstack-dev | 15:09 | |
*** zz_jgrimm is now known as jgrimm | 15:09 | |
*** BharatK has joined #openstack-dev | 15:09 | |
*** numan has quit IRC | 15:11 | |
*** baoli has quit IRC | 15:11 | |
*** jcoufal_ has quit IRC | 15:12 | |
*** baoli has joined #openstack-dev | 15:12 | |
*** ihrachyshka_ is now known as ihrachyshka | 15:13 | |
*** EmilienM has quit IRC | 15:14 | |
*** otter768 has joined #openstack-dev | 15:15 | |
*** EmilienM has joined #openstack-dev | 15:16 | |
*** topol has joined #openstack-dev | 15:17 | |
*** signed8bit_ZZZzz is now known as signed8bit | 15:17 | |
*** nelsnelson has joined #openstack-dev | 15:18 | |
*** Riddhi has quit IRC | 15:18 | |
*** otter768 has quit IRC | 15:19 | |
*** amotoki has joined #openstack-dev | 15:20 | |
*** dsirrine has joined #openstack-dev | 15:23 | |
*** avozza is now known as zz_avozza | 15:23 | |
*** hdd has joined #openstack-dev | 15:25 | |
*** Networkn3rd has joined #openstack-dev | 15:25 | |
*** SridharG has left #openstack-dev | 15:26 | |
*** mattfarina has quit IRC | 15:27 | |
*** jprovazn has quit IRC | 15:28 | |
*** yamahata has joined #openstack-dev | 15:28 | |
tuvenen | ll | 15:30 |
tuvenen | oops keyboard error sorry ;) | 15:30 |
*** swinn_ has joined #openstack-dev | 15:30 | |
*** Sukhdev has joined #openstack-dev | 15:30 | |
*** mpaolino has quit IRC | 15:31 | |
*** corXi has quit IRC | 15:32 | |
*** swinn_ is now known as swinn | 15:34 | |
*** zz_dimtruck is now known as dimtruck | 15:34 | |
*** noslzzp has quit IRC | 15:34 | |
*** swinn has quit IRC | 15:34 | |
*** jecarey has joined #openstack-dev | 15:35 | |
*** EmilienM is now known as EmilienM|afk | 15:35 | |
*** Ctina has quit IRC | 15:38 | |
*** Ctina has joined #openstack-dev | 15:39 | |
*** remm has joined #openstack-dev | 15:39 | |
*** remm has left #openstack-dev | 15:39 | |
*** BharatK has quit IRC | 15:39 | |
*** swinn has joined #openstack-dev | 15:40 | |
*** ChuckC has joined #openstack-dev | 15:40 | |
*** ChuckC_ has quit IRC | 15:41 | |
*** om has joined #openstack-dev | 15:43 | |
*** mpaolino has joined #openstack-dev | 15:44 | |
*** diegows has quit IRC | 15:44 | |
*** Nikolay_St has quit IRC | 15:44 | |
*** Riddhi has joined #openstack-dev | 15:44 | |
*** Riddhi has quit IRC | 15:45 | |
*** Riddhi has joined #openstack-dev | 15:45 | |
*** nelsnels_ has joined #openstack-dev | 15:46 | |
*** davideagnello has joined #openstack-dev | 15:46 | |
*** nelsnelson has quit IRC | 15:46 | |
*** lpetrut has quit IRC | 15:47 | |
*** vijendar has joined #openstack-dev | 15:47 | |
*** brodrigue has joined #openstack-dev | 15:48 | |
*** matrohon has quit IRC | 15:50 | |
*** BharatK has joined #openstack-dev | 15:51 | |
*** mkolesni has quit IRC | 15:53 | |
*** AlanClark has joined #openstack-dev | 15:53 | |
*** kgriffs|afk is now known as kgriffs | 15:54 | |
*** ajayaa has joined #openstack-dev | 15:55 | |
*** erlon has joined #openstack-dev | 15:56 | |
*** ukkxue has joined #openstack-dev | 15:57 | |
*** exploreshaifali has joined #openstack-dev | 15:57 | |
*** om has quit IRC | 15:58 | |
*** ghostpl has joined #openstack-dev | 15:58 | |
*** rajinir_r has quit IRC | 16:00 | |
*** c^ has joined #openstack-dev | 16:00 | |
*** sarob has joined #openstack-dev | 16:00 | |
*** xarses has quit IRC | 16:02 | |
*** nkinder has quit IRC | 16:02 | |
*** ghostpl has quit IRC | 16:02 | |
*** prazumovsky has quit IRC | 16:03 | |
*** neeti has joined #openstack-dev | 16:03 | |
*** Marga_ has joined #openstack-dev | 16:03 | |
*** tsekiyama has joined #openstack-dev | 16:04 | |
*** c^ has quit IRC | 16:04 | |
*** diegows has joined #openstack-dev | 16:05 | |
*** tdruiva_ is now known as tdruiva | 16:05 | |
*** stanchan_ has joined #openstack-dev | 16:05 | |
*** galstrom_zzz is now known as galstrom | 16:06 | |
*** nkinder has joined #openstack-dev | 16:06 | |
*** vivekd has quit IRC | 16:07 | |
*** ghostpl has joined #openstack-dev | 16:09 | |
*** stanchan has quit IRC | 16:09 | |
*** stanchan_ has quit IRC | 16:10 | |
*** mattfarina has joined #openstack-dev | 16:12 | |
*** anish_ has joined #openstack-dev | 16:13 | |
*** bpokorny has joined #openstack-dev | 16:13 | |
*** stevemar has joined #openstack-dev | 16:14 | |
*** ghostpl has quit IRC | 16:14 | |
*** ChuckC_ has joined #openstack-dev | 16:14 | |
*** gthouvenin has joined #openstack-dev | 16:14 | |
*** nmagnezi has quit IRC | 16:15 | |
*** carl_baldwin has joined #openstack-dev | 16:16 | |
*** armax has joined #openstack-dev | 16:16 | |
*** ChuckC has quit IRC | 16:17 | |
*** dustins_ has quit IRC | 16:17 | |
*** nelsnels_ has quit IRC | 16:17 | |
*** tuvenen has quit IRC | 16:18 | |
*** EmilienM|afk is now known as EmilienM | 16:18 | |
*** Networkn3rd has quit IRC | 16:19 | |
*** dustins has joined #openstack-dev | 16:19 | |
*** Networkn3rd has joined #openstack-dev | 16:19 | |
*** Ala has quit IRC | 16:20 | |
*** paragan has quit IRC | 16:20 | |
*** AbyssOne_ is now known as a1|away | 16:21 | |
*** tiswanso has quit IRC | 16:22 | |
*** jingwang has joined #openstack-dev | 16:22 | |
*** lpetrut has joined #openstack-dev | 16:22 | |
*** nelsnelson has joined #openstack-dev | 16:23 | |
*** ukalifon1 has quit IRC | 16:24 | |
*** epopt37 has quit IRC | 16:24 | |
*** unicell has quit IRC | 16:25 | |
*** epopt37 has joined #openstack-dev | 16:26 | |
*** tiswanso has joined #openstack-dev | 16:27 | |
*** k4n0 has quit IRC | 16:27 | |
*** mikeoutland has joined #openstack-dev | 16:27 | |
*** neeti has quit IRC | 16:27 | |
*** MIG- has joined #openstack-dev | 16:28 | |
*** coolsvap is now known as coolsvap_ | 16:28 | |
*** Anticime1 is now known as Anticimex | 16:29 | |
*** ghostpl has joined #openstack-dev | 16:29 | |
*** ghostpl has quit IRC | 16:29 | |
*** ghostpl has joined #openstack-dev | 16:29 | |
*** marun has joined #openstack-dev | 16:30 | |
*** Mandell has joined #openstack-dev | 16:30 | |
*** nihilifer has quit IRC | 16:31 | |
*** andreaf is now known as andreaf_ | 16:31 | |
*** yatin has joined #openstack-dev | 16:33 | |
*** ghostpl_ has joined #openstack-dev | 16:34 | |
*** ghostpl has quit IRC | 16:34 | |
*** Ephur has quit IRC | 16:35 | |
*** ukkxue has quit IRC | 16:35 | |
*** ijw has quit IRC | 16:36 | |
*** angdraug has joined #openstack-dev | 16:36 | |
*** tdruiva has quit IRC | 16:38 | |
*** tdruiva has joined #openstack-dev | 16:38 | |
*** daniel3_ has joined #openstack-dev | 16:39 | |
*** Marga_ has quit IRC | 16:39 | |
*** mikeoutland has quit IRC | 16:39 | |
*** rwsu-afk is now known as rwsu | 16:40 | |
*** Ala has joined #openstack-dev | 16:41 | |
*** diegows has quit IRC | 16:41 | |
*** gaughen has quit IRC | 16:43 | |
*** mpaolino has quit IRC | 16:43 | |
*** jingwang has quit IRC | 16:45 | |
*** jingwang has joined #openstack-dev | 16:45 | |
*** tnovacik has joined #openstack-dev | 16:45 | |
*** noelbk has joined #openstack-dev | 16:46 | |
*** thedodd has joined #openstack-dev | 16:47 | |
*** hnakil has joined #openstack-dev | 16:47 | |
*** gyee has joined #openstack-dev | 16:47 | |
*** sputnik13 has joined #openstack-dev | 16:48 | |
*** gfidente has quit IRC | 16:49 | |
*** doude has quit IRC | 16:50 | |
*** ajmiller has joined #openstack-dev | 16:50 | |
*** mpaolino has joined #openstack-dev | 16:51 | |
*** xarses has joined #openstack-dev | 16:51 | |
*** jprovazn has joined #openstack-dev | 16:51 | |
*** geguileo has joined #openstack-dev | 16:52 | |
*** Ala has quit IRC | 16:52 | |
*** belmoreira has quit IRC | 16:52 | |
*** mfalatic has joined #openstack-dev | 16:53 | |
*** timsim has quit IRC | 16:54 | |
*** timsim has joined #openstack-dev | 16:54 | |
*** jobewan has joined #openstack-dev | 16:55 | |
*** galstrom is now known as galstrom_zzz | 16:55 | |
*** davideagnello has quit IRC | 16:56 | |
*** _gryf is now known as _gryf|afk | 16:56 | |
*** galstrom_zzz is now known as galstrom | 16:56 | |
*** davideagnello has joined #openstack-dev | 16:57 | |
*** nkinder has quit IRC | 16:57 | |
*** FarmerJohn has quit IRC | 16:57 | |
*** diegows has joined #openstack-dev | 16:57 | |
*** annegent_ has joined #openstack-dev | 16:58 | |
*** doron_afk has quit IRC | 16:58 | |
*** tkammer has quit IRC | 16:59 | |
*** sputnik13 has quit IRC | 16:59 | |
*** jgallard_ has quit IRC | 16:59 | |
*** tnovacik has quit IRC | 17:00 | |
*** dkranz has quit IRC | 17:01 | |
*** dustins has quit IRC | 17:01 | |
*** dtantsur is now known as dtantsur|afk | 17:01 | |
*** swinn has quit IRC | 17:03 | |
*** atan8 has joined #openstack-dev | 17:04 | |
*** ihrachyshka has quit IRC | 17:05 | |
*** ybathia has joined #openstack-dev | 17:05 | |
*** mpaolino has quit IRC | 17:06 | |
*** MaxV has quit IRC | 17:06 | |
*** [1]evgenyf has quit IRC | 17:06 | |
*** nkinder has joined #openstack-dev | 17:07 | |
*** pradeep1 has joined #openstack-dev | 17:07 | |
*** kgiusti has quit IRC | 17:07 | |
*** scheuran has quit IRC | 17:07 | |
*** pradeep has quit IRC | 17:07 | |
*** mpaolino has joined #openstack-dev | 17:08 | |
*** ygbo has quit IRC | 17:11 | |
*** jobewan has quit IRC | 17:11 | |
*** Adriano__ has joined #openstack-dev | 17:11 | |
*** pschaef has quit IRC | 17:12 | |
*** daniel3_ has quit IRC | 17:14 | |
*** dkranz has joined #openstack-dev | 17:14 | |
*** vishwanathj has joined #openstack-dev | 17:15 | |
*** gyee has quit IRC | 17:15 | |
*** otter768 has joined #openstack-dev | 17:16 | |
*** doron_afk has joined #openstack-dev | 17:17 | |
*** daniel3_ has joined #openstack-dev | 17:18 | |
*** safchain has quit IRC | 17:19 | |
*** spandhe has joined #openstack-dev | 17:20 | |
*** jasonamyers is now known as zzz_jasonamyers | 17:20 | |
*** ghostpl_ has quit IRC | 17:20 | |
*** signed8bit is now known as signed8bit_ZZZzz | 17:20 | |
*** matrohon has joined #openstack-dev | 17:20 | |
*** otter768 has quit IRC | 17:20 | |
*** Marga_ has joined #openstack-dev | 17:21 | |
*** stanchan has joined #openstack-dev | 17:21 | |
*** atan8 has quit IRC | 17:22 | |
*** melwitt has joined #openstack-dev | 17:22 | |
*** ijw has joined #openstack-dev | 17:23 | |
*** athomas has quit IRC | 17:23 | |
*** yatin has quit IRC | 17:23 | |
*** jobewan has joined #openstack-dev | 17:24 | |
*** leeantho has joined #openstack-dev | 17:25 | |
*** jistr has quit IRC | 17:25 | |
*** jcoufal has quit IRC | 17:26 | |
*** daniel3_ has quit IRC | 17:26 | |
*** annashen has joined #openstack-dev | 17:27 | |
*** pradeep has joined #openstack-dev | 17:28 | |
*** xxj has quit IRC | 17:29 | |
*** sahid has quit IRC | 17:29 | |
*** xxj has joined #openstack-dev | 17:29 | |
*** daniel3_ has joined #openstack-dev | 17:29 | |
*** pradeep1 has quit IRC | 17:29 | |
*** om has joined #openstack-dev | 17:30 | |
*** Sukhdev has quit IRC | 17:30 | |
*** gyee has joined #openstack-dev | 17:30 | |
*** nkinder has quit IRC | 17:30 | |
*** jpich has quit IRC | 17:31 | |
*** BharatK has quit IRC | 17:33 | |
*** jtomasek has quit IRC | 17:33 | |
*** GheRivero has quit IRC | 17:34 | |
*** daniel3_ has quit IRC | 17:34 | |
*** daniel3_ has joined #openstack-dev | 17:34 | |
*** GheRivero has joined #openstack-dev | 17:34 | |
*** neelashah has quit IRC | 17:36 | |
*** prad has joined #openstack-dev | 17:36 | |
*** zzz_jasonamyers is now known as jasonamyers | 17:37 | |
*** jasonamyers is now known as zzz_jasonamyers | 17:38 | |
*** spandhe has quit IRC | 17:38 | |
*** exploreshaifali has quit IRC | 17:38 | |
*** yamamoto has quit IRC | 17:39 | |
*** swinn has joined #openstack-dev | 17:39 | |
*** unicell has joined #openstack-dev | 17:41 | |
*** hdd has quit IRC | 17:44 | |
*** tnovacik has joined #openstack-dev | 17:45 | |
*** etoews has quit IRC | 17:47 | |
*** anish__ has joined #openstack-dev | 17:47 | |
*** dulek has quit IRC | 17:47 | |
*** dulek has joined #openstack-dev | 17:47 | |
*** Kieleth has joined #openstack-dev | 17:49 | |
*** doude has joined #openstack-dev | 17:49 | |
*** anish_ has quit IRC | 17:50 | |
*** neelashah has joined #openstack-dev | 17:50 | |
*** GheRivero has quit IRC | 17:51 | |
*** GheRivero has joined #openstack-dev | 17:51 | |
*** zzzeek has joined #openstack-dev | 17:51 | |
*** eghobo has joined #openstack-dev | 17:51 | |
*** _cjones_ has joined #openstack-dev | 17:51 | |
*** pradeep1 has joined #openstack-dev | 17:52 | |
*** kgriffs is now known as kgriffs|afk | 17:52 | |
*** annegent_ has quit IRC | 17:53 | |
*** pradeep has quit IRC | 17:53 | |
*** pradeep1 has quit IRC | 17:54 | |
*** kgriffs|afk is now known as kgriffs | 17:54 | |
*** amuller_ has joined #openstack-dev | 17:55 | |
*** vigneshvar has joined #openstack-dev | 17:56 | |
*** toddnni has joined #openstack-dev | 17:56 | |
*** spandhe has joined #openstack-dev | 17:57 | |
*** coolsvap_ is now known as coolsvap | 17:57 | |
*** gthouvenin has quit IRC | 17:58 | |
*** amuller has quit IRC | 17:58 | |
*** daniel3_ has quit IRC | 17:59 | |
*** unicell has quit IRC | 18:00 | |
*** unicell1 has joined #openstack-dev | 18:00 | |
*** amuller_ has quit IRC | 18:00 | |
*** SumitNaiksatam has joined #openstack-dev | 18:01 | |
*** ajayaa has quit IRC | 18:01 | |
*** doude has quit IRC | 18:01 | |
*** doron_afk has quit IRC | 18:01 | |
*** doude has joined #openstack-dev | 18:01 | |
*** derekh has quit IRC | 18:02 | |
*** mikeoutland has joined #openstack-dev | 18:02 | |
*** dkranz has quit IRC | 18:07 | |
*** doude has quit IRC | 18:07 | |
*** daniel3_ has joined #openstack-dev | 18:07 | |
*** daniel3_ has quit IRC | 18:07 | |
*** daniel3_ has joined #openstack-dev | 18:08 | |
*** doude has joined #openstack-dev | 18:08 | |
*** akrivoka has quit IRC | 18:09 | |
*** dustins has joined #openstack-dev | 18:09 | |
*** hdd has joined #openstack-dev | 18:09 | |
*** harlowja has joined #openstack-dev | 18:11 | |
*** stanchan has quit IRC | 18:11 | |
*** jasondotstar has joined #openstack-dev | 18:11 | |
*** stanchan has joined #openstack-dev | 18:11 | |
*** daniel3_ has quit IRC | 18:13 | |
*** swinn has quit IRC | 18:13 | |
*** daniel3_ has joined #openstack-dev | 18:13 | |
*** yamahata has quit IRC | 18:14 | |
*** jasondotstar has quit IRC | 18:14 | |
*** thedodd has quit IRC | 18:14 | |
*** swinn has joined #openstack-dev | 18:16 | |
*** signed8bit_ZZZzz is now known as signed8bit | 18:17 | |
*** pradeep has joined #openstack-dev | 18:19 | |
*** coolsvap is now known as coolsvap_ | 18:20 | |
*** gszasz has quit IRC | 18:22 | |
*** kgiusti has joined #openstack-dev | 18:22 | |
*** dkranz has joined #openstack-dev | 18:22 | |
*** Nikolay_St has joined #openstack-dev | 18:22 | |
*** mpaolino has quit IRC | 18:23 | |
*** patrickeast has joined #openstack-dev | 18:24 | |
*** pradeep has quit IRC | 18:25 | |
*** pradeep has joined #openstack-dev | 18:25 | |
*** jaosorior has quit IRC | 18:26 | |
*** rohitk has quit IRC | 18:27 | |
*** pradeep has quit IRC | 18:28 | |
*** wierenga_ has joined #openstack-dev | 18:29 | |
*** zzz_jasonamyers is now known as jasonamyers | 18:29 | |
*** Marga_ has quit IRC | 18:30 | |
*** Marga_ has joined #openstack-dev | 18:31 | |
*** doude has quit IRC | 18:31 | |
*** achanda has joined #openstack-dev | 18:31 | |
*** amotoki has quit IRC | 18:32 | |
*** signed8bit is now known as signed8bit_ZZZzz | 18:33 | |
*** doude has joined #openstack-dev | 18:33 | |
*** bdpayne has joined #openstack-dev | 18:34 | |
*** signed8bit_ZZZzz is now known as signed8bit | 18:35 | |
*** yamahata has joined #openstack-dev | 18:37 | |
*** swinn has quit IRC | 18:37 | |
*** rushiagr is now known as rushiagr_away | 18:38 | |
*** wierenga_ has quit IRC | 18:39 | |
*** sputnik13 has joined #openstack-dev | 18:39 | |
*** jordanP has quit IRC | 18:41 | |
*** clayg_ is now known as clayg | 18:41 | |
*** pelix has quit IRC | 18:42 | |
*** sarob has quit IRC | 18:43 | |
*** om has quit IRC | 18:45 | |
*** ihrachyshka has joined #openstack-dev | 18:46 | |
*** Nikolay_St has quit IRC | 18:50 | |
*** afazekas has quit IRC | 18:51 | |
*** franred has quit IRC | 18:53 | |
*** annegent_ has joined #openstack-dev | 18:54 | |
*** rohitk has joined #openstack-dev | 18:54 | |
*** jckasper has quit IRC | 18:54 | |
*** slupers has joined #openstack-dev | 18:56 | |
*** slupers has quit IRC | 18:57 | |
*** slupers has joined #openstack-dev | 18:57 | |
*** Marga_ has quit IRC | 18:58 | |
*** Marga_ has joined #openstack-dev | 18:58 | |
*** Fabio has joined #openstack-dev | 18:58 | |
*** annegent_ has quit IRC | 18:59 | |
*** Fabio has quit IRC | 18:59 | |
*** fabiog has joined #openstack-dev | 18:59 | |
*** annegent_ has joined #openstack-dev | 19:00 | |
*** schwicht has quit IRC | 19:00 | |
*** Nikolay_St has joined #openstack-dev | 19:01 | |
*** dustins_ has joined #openstack-dev | 19:01 | |
*** slupers_ has joined #openstack-dev | 19:01 | |
*** om has joined #openstack-dev | 19:02 | |
*** xarses has quit IRC | 19:02 | |
*** dustins has quit IRC | 19:03 | |
*** slupers has quit IRC | 19:04 | |
*** enykeev has quit IRC | 19:04 | |
*** brodrigue has quit IRC | 19:04 | |
*** thedodd has joined #openstack-dev | 19:05 | |
*** slupers_ has quit IRC | 19:05 | |
*** ignacio-scopetta has quit IRC | 19:06 | |
*** sarob has joined #openstack-dev | 19:06 | |
*** enykeev has joined #openstack-dev | 19:06 | |
*** ngoracke has quit IRC | 19:06 | |
*** Nikolay_St has quit IRC | 19:07 | |
*** Nikolay_St has joined #openstack-dev | 19:08 | |
*** ignacio-scopetta has joined #openstack-dev | 19:08 | |
*** signed8bit is now known as signed8bit_ZZZzz | 19:08 | |
*** angdraug has quit IRC | 19:09 | |
*** etoews has joined #openstack-dev | 19:10 | |
*** jp_at_hp has quit IRC | 19:11 | |
*** kgriffs is now known as kgriffs|afk | 19:11 | |
*** signed8bit_ZZZzz is now known as signed8bit | 19:11 | |
*** anish__ has quit IRC | 19:11 | |
*** xarses has joined #openstack-dev | 19:14 | |
*** exploreshaifali has joined #openstack-dev | 19:16 | |
*** markus_z has quit IRC | 19:17 | |
*** otter768 has joined #openstack-dev | 19:17 | |
*** geguileo has quit IRC | 19:18 | |
*** cdent has quit IRC | 19:18 | |
*** devlaps has joined #openstack-dev | 19:20 | |
*** otter768 has quit IRC | 19:21 | |
*** ngoracke has joined #openstack-dev | 19:21 | |
*** amitgandhinz has quit IRC | 19:22 | |
*** alop has joined #openstack-dev | 19:22 | |
*** om has quit IRC | 19:22 | |
*** jobewan has quit IRC | 19:23 | |
*** Guest92134 has quit IRC | 19:23 | |
*** devlaps has quit IRC | 19:24 | |
*** Artpicre has joined #openstack-dev | 19:25 | |
*** kobis has quit IRC | 19:25 | |
*** kobis has joined #openstack-dev | 19:27 | |
*** brodrigue has joined #openstack-dev | 19:27 | |
*** kobis has quit IRC | 19:29 | |
*** pnavarro has joined #openstack-dev | 19:30 | |
*** kobis has joined #openstack-dev | 19:32 | |
*** johnthetubaguy is now known as zz_johnthetubagu | 19:34 | |
*** rfolco has quit IRC | 19:34 | |
*** achanda has quit IRC | 19:35 | |
*** xarses has quit IRC | 19:35 | |
*** vishwanathj has quit IRC | 19:37 | |
*** annashen has quit IRC | 19:37 | |
*** annashen has joined #openstack-dev | 19:38 | |
*** Marga_ has quit IRC | 19:38 | |
*** Marga_ has joined #openstack-dev | 19:39 | |
*** jobewan has joined #openstack-dev | 19:41 | |
*** diegows has quit IRC | 19:41 | |
*** doude has quit IRC | 19:41 | |
*** AlanClark has quit IRC | 19:42 | |
*** jckasper has joined #openstack-dev | 19:42 | |
*** davideagnello has quit IRC | 19:44 | |
*** achanda has joined #openstack-dev | 19:45 | |
*** Nikolay_St has quit IRC | 19:48 | |
*** carl_baldwin has quit IRC | 19:49 | |
*** harlowja is now known as harlowja_away | 19:50 | |
*** xarses has joined #openstack-dev | 19:50 | |
*** dustins_ has quit IRC | 19:51 | |
*** carl_baldwin has joined #openstack-dev | 19:52 | |
*** jprovazn has quit IRC | 19:52 | |
*** pixelbeat has quit IRC | 19:52 | |
*** davideagnello has joined #openstack-dev | 19:52 | |
*** dustins has joined #openstack-dev | 19:52 | |
*** EmilienM is now known as EmilienM|afk | 19:53 | |
*** signed8bit is now known as signed8bit_ZZZzz | 19:54 | |
*** ZZelle_ has joined #openstack-dev | 19:54 | |
*** llu has quit IRC | 19:55 | |
*** ignacio-scopetta has quit IRC | 19:55 | |
*** ignacio-scopett1 has joined #openstack-dev | 19:55 | |
*** signed8bit_ZZZzz is now known as signed8bit | 19:56 | |
*** denis_makogon has joined #openstack-dev | 19:56 | |
*** davideagnello has quit IRC | 19:57 | |
*** dulek has quit IRC | 19:58 | |
*** annegent_ has quit IRC | 19:58 | |
*** diegows has joined #openstack-dev | 19:59 | |
*** rfolco has joined #openstack-dev | 20:00 | |
*** annashen has quit IRC | 20:02 | |
*** tsufiev_ is now known as tsufiev | 20:02 | |
*** AnilV4 has quit IRC | 20:03 | |
*** comay has quit IRC | 20:04 | |
*** annegent_ has joined #openstack-dev | 20:04 | |
*** geoffsullivan has joined #openstack-dev | 20:06 | |
*** prad has quit IRC | 20:06 | |
*** geoffsullivan is now known as sullivg2 | 20:07 | |
*** swinn has joined #openstack-dev | 20:07 | |
*** thedodd has quit IRC | 20:07 | |
*** timsim has quit IRC | 20:08 | |
*** prad has joined #openstack-dev | 20:10 | |
*** kgriffs|afk is now known as kgriffs | 20:11 | |
*** sarob has quit IRC | 20:13 | |
*** daniel3_ has quit IRC | 20:14 | |
*** sarob has joined #openstack-dev | 20:16 | |
*** daniel3_ has joined #openstack-dev | 20:19 | |
*** dustins has quit IRC | 20:20 | |
*** achanda has quit IRC | 20:20 | |
*** kgriffs is now known as kgriffs|afk | 20:20 | |
*** ghostpl has joined #openstack-dev | 20:21 | |
*** achanda has joined #openstack-dev | 20:21 | |
*** thedodd has joined #openstack-dev | 20:21 | |
*** r1chardj0n3s_afk is now known as r1chardj0n3s | 20:22 | |
*** kgriffs|afk is now known as kgriffs | 20:23 | |
*** dustins has joined #openstack-dev | 20:23 | |
*** nshah has left #openstack-dev | 20:24 | |
*** vishwanathj has joined #openstack-dev | 20:24 | |
*** Mandell has quit IRC | 20:24 | |
*** mattfarina has quit IRC | 20:24 | |
*** carl_baldwin has quit IRC | 20:25 | |
*** sullivg2 has quit IRC | 20:25 | |
*** ghostpl has quit IRC | 20:25 | |
*** neelashah has quit IRC | 20:28 | |
*** sarob has quit IRC | 20:31 | |
*** achanda has quit IRC | 20:32 | |
*** ihrachyshka has quit IRC | 20:32 | |
*** arunkant has quit IRC | 20:33 | |
*** harlowja_away is now known as harlowja | 20:33 | |
*** 6A4ABBR4J has quit IRC | 20:34 | |
*** gnuoy has quit IRC | 20:34 | |
*** schwicht has joined #openstack-dev | 20:34 | |
*** gnuoy has joined #openstack-dev | 20:34 | |
*** davideagnello has joined #openstack-dev | 20:34 | |
*** Mandell has joined #openstack-dev | 20:34 | |
*** penick has joined #openstack-dev | 20:35 | |
*** lcurtis has joined #openstack-dev | 20:36 | |
*** raildo has quit IRC | 20:39 | |
*** achanda has joined #openstack-dev | 20:40 | |
*** raildo has joined #openstack-dev | 20:41 | |
*** baoli has quit IRC | 20:42 | |
*** nshah has joined #openstack-dev | 20:43 | |
*** annashen has joined #openstack-dev | 20:43 | |
*** kgriffs is now known as kgriffs|afk | 20:44 | |
*** topol has quit IRC | 20:44 | |
*** nshah has left #openstack-dev | 20:45 | |
*** sullivg2 has joined #openstack-dev | 20:46 | |
*** matrohon has quit IRC | 20:48 | |
*** oro has joined #openstack-dev | 20:48 | |
*** kgriffs|afk is now known as kgriffs | 20:50 | |
*** nelsnelson has quit IRC | 20:51 | |
*** novas0x2a|laptop has joined #openstack-dev | 20:52 | |
sandywalsh | any rabbitmq experts in the house? | 20:53 |
*** amitgandhinz has joined #openstack-dev | 20:54 | |
*** timsim__ has joined #openstack-dev | 20:56 | |
*** nellysmitt has quit IRC | 20:56 | |
*** mattfarina has joined #openstack-dev | 20:57 | |
*** mattfarina has quit IRC | 20:58 | |
*** mkollaro has joined #openstack-dev | 20:58 | |
*** eglynn has quit IRC | 21:00 | |
*** etoews has quit IRC | 21:01 | |
*** etoews has joined #openstack-dev | 21:03 | |
*** Ctina has quit IRC | 21:03 | |
*** Artpicre has quit IRC | 21:05 | |
*** gnuoy has quit IRC | 21:06 | |
*** gnuoy has joined #openstack-dev | 21:07 | |
*** zul has quit IRC | 21:08 | |
*** zul has joined #openstack-dev | 21:08 | |
*** annegent_ has quit IRC | 21:10 | |
*** Artpicre has joined #openstack-dev | 21:10 | |
*** Artpicre is now known as Guest99189 | 21:11 | |
*** claudiub has quit IRC | 21:12 | |
*** Guest99189 has quit IRC | 21:12 | |
*** etoews has quit IRC | 21:13 | |
*** Artpicre_ has joined #openstack-dev | 21:14 | |
*** dustins has quit IRC | 21:14 | |
*** ChuckC_ is now known as ChuckC | 21:16 | |
*** otter768 has joined #openstack-dev | 21:18 | |
*** park_awa` has quit IRC | 21:18 | |
*** oro has quit IRC | 21:18 | |
*** thedodd has quit IRC | 21:18 | |
*** otter768 has quit IRC | 21:22 | |
*** Adriano__ has quit IRC | 21:22 | |
*** ghostpl has joined #openstack-dev | 21:22 | |
*** mfalatic has quit IRC | 21:23 | |
*** stanchan_ has joined #openstack-dev | 21:23 | |
*** dustins has joined #openstack-dev | 21:24 | |
*** dustins has quit IRC | 21:25 | |
*** Networkn3rd has quit IRC | 21:25 | |
*** stanchan has quit IRC | 21:26 | |
*** rfolco has quit IRC | 21:28 | |
*** siwsky has left #openstack-dev | 21:30 | |
*** packet has quit IRC | 21:30 | |
*** toddnni_ has joined #openstack-dev | 21:31 | |
*** dustins has joined #openstack-dev | 21:31 | |
*** rfolco has joined #openstack-dev | 21:32 | |
*** sarob has joined #openstack-dev | 21:32 | |
*** novas0x2a|laptop has quit IRC | 21:32 | |
*** dprince has quit IRC | 21:33 | |
*** toddnni has quit IRC | 21:33 | |
*** toddnni_ is now known as toddnni | 21:33 | |
*** achanda has quit IRC | 21:33 | |
*** Marga_ has quit IRC | 21:33 | |
*** Marga_ has joined #openstack-dev | 21:34 | |
*** vladikr has quit IRC | 21:35 | |
*** thedodd has joined #openstack-dev | 21:36 | |
*** novas0x2a|laptop has joined #openstack-dev | 21:36 | |
*** baoli has joined #openstack-dev | 21:38 | |
*** achanda has joined #openstack-dev | 21:38 | |
*** tiswanso has quit IRC | 21:38 | |
*** tiswanso has joined #openstack-dev | 21:39 | |
*** andreaf has joined #openstack-dev | 21:40 | |
*** sullivg2 has quit IRC | 21:40 | |
*** dsirrine has quit IRC | 21:41 | |
*** tdruiva has quit IRC | 21:41 | |
*** novas0x2a|laptop has quit IRC | 21:41 | |
*** tdruiva has joined #openstack-dev | 21:41 | |
*** toddnni has quit IRC | 21:42 | |
*** diogogmt has joined #openstack-dev | 21:42 | |
*** diogogmt has quit IRC | 21:43 | |
*** toddnni has joined #openstack-dev | 21:43 | |
*** EmilienM|afk is now known as EmilienM | 21:45 | |
*** tdruiva has quit IRC | 21:46 | |
*** d34dh0r53 is now known as blarnath | 21:48 | |
*** arunkant has joined #openstack-dev | 21:48 | |
*** toddnni has quit IRC | 21:48 | |
*** belmoreira has joined #openstack-dev | 21:48 | |
*** toddnni has joined #openstack-dev | 21:49 | |
*** novas0x2a|laptop has joined #openstack-dev | 21:49 | |
*** novas0x2a|laptop has quit IRC | 21:50 | |
*** andreaf has quit IRC | 21:52 | |
*** stanchan has joined #openstack-dev | 21:52 | |
*** pnavarro has quit IRC | 21:52 | |
*** carl_baldwin has joined #openstack-dev | 21:52 | |
*** andreaf has joined #openstack-dev | 21:54 | |
*** sarob has quit IRC | 21:54 | |
*** stanchan_ has quit IRC | 21:55 | |
*** hhuang has quit IRC | 21:56 | |
*** tdruiva has joined #openstack-dev | 21:56 | |
*** hhuang has joined #openstack-dev | 21:56 | |
*** comay has joined #openstack-dev | 21:56 | |
*** thangp has quit IRC | 21:57 | |
*** bradjones has quit IRC | 21:57 | |
*** denis_makogon has quit IRC | 21:58 | |
*** carl_baldwin has quit IRC | 21:59 | |
*** enterprisedc has quit IRC | 22:00 | |
*** MIG- has quit IRC | 22:00 | |
*** tdruiva has quit IRC | 22:00 | |
*** bradjones has joined #openstack-dev | 22:00 | |
*** ijw_ has joined #openstack-dev | 22:01 | |
*** novas0x2a|laptop has joined #openstack-dev | 22:01 | |
*** asalkeld_zzz has joined #openstack-dev | 22:02 | |
*** asalkeld_zzz is now known as asalkeld | 22:02 | |
*** annegent_ has joined #openstack-dev | 22:04 | |
*** enterprisedc has joined #openstack-dev | 22:04 | |
*** ijw has quit IRC | 22:04 | |
*** blarnath is now known as d34dh0r53 | 22:05 | |
*** annegent_ has quit IRC | 22:05 | |
*** Artpicre_ is now known as Artpicre | 22:05 | |
*** unicell1 has quit IRC | 22:05 | |
*** unicell has joined #openstack-dev | 22:05 | |
*** daniel3_ has quit IRC | 22:07 | |
*** danielbruno has joined #openstack-dev | 22:08 | |
*** achanda has quit IRC | 22:08 | |
*** andreykurilin_ has joined #openstack-dev | 22:08 | |
*** claudiub has joined #openstack-dev | 22:08 | |
*** unicell has quit IRC | 22:08 | |
*** unicell has joined #openstack-dev | 22:09 | |
*** tiswanso has quit IRC | 22:11 | |
*** tdruiva has joined #openstack-dev | 22:12 | |
*** etoews has joined #openstack-dev | 22:12 | |
*** tiswanso has joined #openstack-dev | 22:13 | |
*** rhsu has joined #openstack-dev | 22:14 | |
*** Ctina has joined #openstack-dev | 22:14 | |
*** dustins has quit IRC | 22:15 | |
*** tdruiva has quit IRC | 22:16 | |
*** vigneshvar has quit IRC | 22:17 | |
*** Sukhdev has joined #openstack-dev | 22:18 | |
*** Ctina has quit IRC | 22:19 | |
*** pixelbeat has joined #openstack-dev | 22:19 | |
*** jecarey has quit IRC | 22:20 | |
stevemar | dtroyer, know much about how trove is configured in devstack? | 22:20 |
*** lcurtis has quit IRC | 22:20 | |
*** Lee1092 has quit IRC | 22:20 | |
*** kaufer has quit IRC | 22:20 | |
*** thedodd has quit IRC | 22:21 | |
dtroyer | stevemar: not at all. I know it is there, and I know we'll be asking them to move to an external plugin sometime maybe after Kilo release | 22:21 |
stevemar | dtroyer, bah, i enabled the services, and everything spun up, but when i tried `trove list` it says the database service isn't in the catalog, and there is no database severice created, at all | 22:22 |
*** dulek has joined #openstack-dev | 22:24 | |
*** daniel3_ has joined #openstack-dev | 22:26 | |
*** tiswanso has quit IRC | 22:27 | |
*** dkranz has quit IRC | 22:27 | |
dtroyer | hmmm…I'll enable it in my next default install run and see what I can find | 22:28 |
*** dulek has quit IRC | 22:29 | |
*** thedodd has joined #openstack-dev | 22:29 | |
*** bpokorny has quit IRC | 22:33 | |
*** belliott has joined #openstack-dev | 22:34 | |
*** jasonamyers is now known as zzz_jasonamyers | 22:34 | |
stevemar | dtroyer, that'd be cool... i just added 'tr-api,tr-cond,tr-tmgr' to my ENABLED_SERVICES, nothing else special... didn't realize that glance was a requirement, that was fun | 22:34 |
*** mlsoule has quit IRC | 22:35 | |
*** schwicht has quit IRC | 22:36 | |
*** gaughen has joined #openstack-dev | 22:37 | |
*** kgiusti has left #openstack-dev | 22:40 | |
*** jobewan has quit IRC | 22:40 | |
*** mriedem has quit IRC | 22:41 | |
*** schwicht has joined #openstack-dev | 22:41 | |
*** mattfarina has joined #openstack-dev | 22:44 | |
*** davideagnello has quit IRC | 22:44 | |
*** rtheis_ has quit IRC | 22:44 | |
*** andreykurilin_ has quit IRC | 22:46 | |
*** ybathia has quit IRC | 22:47 | |
*** ybathia has joined #openstack-dev | 22:47 | |
*** ssurana has joined #openstack-dev | 22:49 | |
*** ssurana1 has joined #openstack-dev | 22:50 | |
*** asalkeld has quit IRC | 22:50 | |
*** mkollaro has quit IRC | 22:52 | |
*** ssurana has quit IRC | 22:53 | |
*** lpetrut has quit IRC | 22:53 | |
*** jobewan has joined #openstack-dev | 22:54 | |
*** timsim__ has quit IRC | 22:54 | |
*** hnakil has quit IRC | 22:54 | |
*** andreykurilin_ has joined #openstack-dev | 22:55 | |
*** nellysmitt has joined #openstack-dev | 22:56 | |
*** nelsnelson has joined #openstack-dev | 22:57 | |
*** asalkeld has joined #openstack-dev | 22:57 | |
*** dims_ has quit IRC | 22:57 | |
*** lpetrut has joined #openstack-dev | 22:58 | |
*** lpetrut has quit IRC | 22:59 | |
*** jaypipes has quit IRC | 23:00 | |
*** holms has joined #openstack-dev | 23:01 | |
holms | anybody able to install openstack juno? | 23:01 |
*** nellysmitt has quit IRC | 23:01 | |
holms | http://pastebin.com/ZUuNihgs in devstack there seems to be some qcow image can't be downloaded | 23:02 |
*** ghostpl has quit IRC | 23:02 | |
*** kbringard has quit IRC | 23:03 | |
*** davideagnello has joined #openstack-dev | 23:04 | |
*** mpetason has quit IRC | 23:04 | |
*** davideagnello has quit IRC | 23:04 | |
*** davideagnello has joined #openstack-dev | 23:04 | |
*** pc_m has quit IRC | 23:04 | |
*** mattfarina has quit IRC | 23:04 | |
*** ssurana has joined #openstack-dev | 23:05 | |
clarkb | holms: https://fedorapeople.org/groups/heat/prebuilt-jeos-images/ that file does appear to be missing | 23:05 |
clarkb | likely need a change to devstack to use a different image | 23:06 |
*** Mandell has quit IRC | 23:06 | |
holms | clarkb: i'm just curious is juno stable enough to use it with devstack :) | 23:06 |
holms | because now i need to patch something in here, which will take 4 day to get code review and etc.. | 23:06 |
*** signed8bit has quit IRC | 23:07 | |
clarkb | yes juno should work fine otherwise | 23:07 |
clarkb | at least it is periodically tested and we upgrade from juno to master(kilo) on every change | 23:07 |
*** ssurana1 has quit IRC | 23:08 | |
*** achanda has joined #openstack-dev | 23:08 | |
*** alexandra is now known as asettle | 23:09 | |
*** prad has quit IRC | 23:10 | |
*** abhirc has joined #openstack-dev | 23:12 | |
*** tdruiva has joined #openstack-dev | 23:12 | |
holms | clarkb: i'm also curious do you use devstack when you developing openstack, because stack.sh breaks on all 5 vm's with ubuntu 14.04.. in DO, in AWS, in vagrant, in my two other laptops | 23:13 |
*** penick has quit IRC | 23:13 | |
clarkb | I mean I manage the jenkins slaves that run devstack many thousands of times per day | 23:13 |
clarkb | so when it breaks there I often debug it | 23:13 |
*** dimtruck is now known as zz_dimtruck | 23:14 | |
clarkb | digitial ocean is containers right? devstack won't quite work there | 23:14 |
*** ignacio-scopetta has joined #openstack-dev | 23:14 | |
clarkb | vagrant + virtualbox or qemu should work fine and I think ec2 should work as well | 23:14 |
*** noslzzp has joined #openstack-dev | 23:14 | |
*** achanda has quit IRC | 23:15 | |
*** Mandell has joined #openstack-dev | 23:15 | |
clarkb | I had a local kvm machine with devstack running in it at one time but haven't needed it in a while | 23:15 |
*** ignacio-scopett1 has quit IRC | 23:16 | |
*** tdruiva has quit IRC | 23:17 | |
*** ghostpl has joined #openstack-dev | 23:17 | |
*** penick has joined #openstack-dev | 23:17 | |
*** g4rg4m3|_ has quit IRC | 23:18 | |
*** otter768 has joined #openstack-dev | 23:19 | |
*** jasondotstar has joined #openstack-dev | 23:19 | |
*** brodrigue has quit IRC | 23:20 | |
*** belmoreira has quit IRC | 23:20 | |
*** amitgandhinz has quit IRC | 23:20 | |
*** schwicht has quit IRC | 23:22 | |
*** ghostpl has quit IRC | 23:22 | |
*** annashen has quit IRC | 23:22 | |
*** Riddhi has quit IRC | 23:23 | |
*** otter768 has quit IRC | 23:23 | |
*** reed has quit IRC | 23:24 | |
*** hnakil has joined #openstack-dev | 23:24 | |
*** hichihara has joined #openstack-dev | 23:24 | |
*** ZZelle_ has quit IRC | 23:25 | |
*** thedodd has quit IRC | 23:28 | |
*** sgordon has quit IRC | 23:28 | |
holms | clarkb: DO is using kvm | 23:31 |
holms | i've got the same issue in virtualbox anyway | 23:31 |
holms | that qcow2 is not found | 23:31 |
*** steveg` has joined #openstack-dev | 23:31 | |
clarkb | holms: yes that is unrelated to where you run it | 23:31 |
clarkb | holms: if you go to the fedora link the dir is empty. the file doesn't exist | 23:31 |
*** ghostpl has joined #openstack-dev | 23:31 | |
holms | and i'm just curious how this is not reported by anyone, seems to be it fails everytime on any vm | 23:31 |
*** FunnyLookinHat has quit IRC | 23:31 | |
holms | clarkb: so how do you load devstack then :) | 23:32 |
holms | you hadn't had this kind problem yet? | 23:32 |
clarkb | holms: we cache the images | 23:32 |
clarkb | holms: its likely we are currently running off the cached image | 23:32 |
clarkb | holms: as I said before it is likely that devstack needs an upate to use a new available image | 23:32 |
holms | k | 23:33 |
holms | and my solution would be..? :) | 23:33 |
*** vijendar has quit IRC | 23:33 | |
*** sputnik13 has quit IRC | 23:34 | |
*** schwicht has joined #openstack-dev | 23:34 | |
clarkb | to change the image | 23:34 |
clarkb | or stop downloading it entirely | 23:34 |
dtroyer | holms: where is that image URL set? I can't find it in stable/juno devstack | 23:34 |
holms | oh, great | 23:36 |
holms | someone has own local.conf in here | 23:36 |
holms | sorry for bother | 23:36 |
dtroyer | np… | 23:36 |
*** achanda has joined #openstack-dev | 23:37 | |
*** andreaf has quit IRC | 23:38 | |
*** dulek has joined #openstack-dev | 23:39 | |
*** baoli has quit IRC | 23:39 | |
*** ajmiller has quit IRC | 23:39 | |
*** steveg` has quit IRC | 23:40 | |
*** dims__ has joined #openstack-dev | 23:40 | |
*** tochi has joined #openstack-dev | 23:41 | |
*** ghostpl has quit IRC | 23:41 | |
*** dims_ has joined #openstack-dev | 23:41 | |
*** steveg` has joined #openstack-dev | 23:43 | |
*** dims__ has quit IRC | 23:46 | |
*** jobewan has quit IRC | 23:47 | |
*** schwicht has quit IRC | 23:47 | |
*** schwicht has joined #openstack-dev | 23:47 | |
*** slupers has joined #openstack-dev | 23:49 | |
*** paragan has joined #openstack-dev | 23:50 | |
*** kobis has quit IRC | 23:50 | |
*** schwicht has quit IRC | 23:52 | |
*** aysyd has quit IRC | 23:53 | |
*** Woodie has quit IRC | 23:54 | |
*** adalbas has quit IRC | 23:55 | |
*** annegent_ has joined #openstack-dev | 23:55 | |
*** markvoelker has quit IRC | 23:56 | |
*** lcurtis has joined #openstack-dev | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!