*** diogogmt has joined #openstack-swift | 00:00 | |
*** jrichli has quit IRC | 00:01 | |
timburke | clayg: as a guess, we'll try to install dnspython3 on python2 and dnspython on python3 | 00:03 |
---|---|---|
clayg | timburke: what do you mean "on python3" | 00:03 |
clayg | timburke: why can't we just install dnspython on the one and only python that swift works with? | 00:03 |
notmyname | right. dnspython3 is the dnspython project's idea of how to port to py3 (have a separate package). but swift doesn't support py3 anyway? | 00:04 |
clayg | so all we have to do to not have markers is not depend on dnsypython? | 00:05 |
clayg | wouldn't be the first time we inlined a dependency that was doing something stupid | 00:06 |
notmyname | or perhaps not try to make the distinction now, seeing as it doesn't actually make anything work better? ie get our own house iin order wrt py3 before trying to pull in whatever dependencies have done | 00:06 |
notmyname | basically, I'm pretty sure I want to revert https://review.openstack.org/#/c/217423/ | 00:07 |
notmyname | and I think the pbr inclusion in requirements is just flat out wrong (it's a build-time dependency, not runtime) | 00:08 |
clayg | redbo: when I see something in go like hummingbird.GetRing how am I supposed to know that's in hummingbird/ring.go and not hummingbird/utils.go ? | 00:08 |
notmyname | clayg: "Namespaces are one honking great idea -- let's do more of those!" ? | 00:08 |
clayg | redbo: like are namespaces not a thing in go - or we just really like grep - or i need better ctags - or swift/go/hummingbird is layed out unconventionally? | 00:09 |
clayg | hurricanerix: ^ what's nadeems handle | 00:09 |
clayg | I feel bad picking on redbo :P | 00:09 |
notmyname | nadeem | 00:09 |
clayg | notmyname: not today it isn't? | 00:09 |
notmyname | not on now. also past 6 in his TZ, probably gone home | 00:10 |
redbo | all the files in a directory are one package/namespace. so yeah you pretty much need grep or a smarter IDE. | 00:11 |
clayg | redbo: do you use grep or ctags in vim - or something else that you're liking? | 00:12 |
* clayg just wants to be like redbo | 00:12 | |
redbo | I use grep | 00:12 |
clayg | fuck yeah | 00:12 |
clayg | like a man | 00:12 |
clayg | printf debugging and grep - the way golang is supposed to be | 00:12 |
clayg | but I seriously don't know why i'm not loggin - it's pretty annoying | 00:13 |
clayg | my dbench is getting thousands of errors - i tried upping device_limit (or whatever the source named that config option) - but nothing in logs :'( | 00:13 |
clayg | heyoh! | 00:15 |
clayg | how about modload imudp in rsyslog.conf, eh? | 00:15 |
clayg | yay permission deined - this'll be much easier now | 00:16 |
*** mzhou has quit IRC | 00:23 | |
pchng | clayg: I use Sublime Text, and this plugin for Golang development: https://github.com/DisposaBoy/GoSublime | 00:23 |
clayg | pchng: a'ight - so there's that - and it can do the bounce to definition of function stuff? | 00:23 |
clayg | redbo: pchng: maybe godef -> https://github.com/rogpeppe/godef | 00:25 |
clayg | I'll probably just start here -> https://github.com/fatih/vim-go | 00:25 |
pchng | clayg: Unfortunately, no, gosublime doesn't. But I don't see why they couldn't add it, a compiled language should make it relatively easier | 00:25 |
pchng | clayg: What do you use for python? | 00:26 |
clayg | pchng: vim + plugins | 00:26 |
pchng | I've been using sublime text but wondering if there's something better, i.e. pycharm or whatever | 00:26 |
clayg | pchng: i hear absolutely nothing but good things about pycharm and *constantly* kick myself for not spending time with it | 00:27 |
pchng | clayg: thanks for the input. well seems like vim-go would be your path of least resistance then :) | 00:27 |
clayg | I looked at it once a few years ago and I griped about it like I do all thick ide's from eclipse to visual stuido - but I'm older and wiser now - so maybe I wouldn't hate it so much | 00:27 |
pchng | vim-go seems really cool | 00:27 |
clayg | who knows - it's pathogen'd up in there now - well see - i'll probably hate it | 00:28 |
clayg | i hate everything | 00:28 |
pchng | clayg: Most of my early development career was spent in Eclipse doing Java. So I've grown a thick skin w.r.t "heavy" IDEs. Eclipse is pretty good for Java, i.e. easily jump to definitions, help with refactoring, etc. (IntelliJ is also good I've heard) | 00:29 |
pchng | but for a language like Java you pretty much need that sort of tooling | 00:29 |
*** pgbridge has quit IRC | 00:39 | |
*** m_kazuhiro has joined #openstack-swift | 00:39 | |
*** Zyric has quit IRC | 00:46 | |
*** siva_krishnan has quit IRC | 00:48 | |
haypo | notmyname: "what breaks if pbr isn't in requirements.txt?" you cannot use setup.py if pbr is too old, because requirements.txt now uses environment markers | 01:01 |
haypo | clayg: without environment markers, you cannot create tox34: you cannot install swift on python 3, because of dnspython | 01:01 |
clayg | haypo: sold! | 01:02 |
haypo | notmyname: another solution if to put pbr requirement in setup.py | 01:02 |
haypo | is to* | 01:02 |
haypo | notmyname: another solution is to document the requirement on the minimum pbr version (>=1.0 should be enough) | 01:02 |
haypo | clayg: it's feasible to enhance dnspython to use a single source code for py2 & py3, but it may require a lot of work, and i don't know if dnspython authors like this | 01:03 |
haypo | (it would avoid the need for env markers, and so swift setup.py would work on older pbr version) | 01:04 |
haypo | good night ;) | 01:04 |
notmyname | haypo: right, the pbr in setup.py is already a thing | 01:07 |
notmyname | thats a build-time dependency, not a runtime one (requirements is parsed after setup.py) | 01:08 |
notmyname | so unless pbr is now being used in some part of the runtime code, it's not needed in requirements | 01:08 |
notmyname | of course, it's still a build requirement. the sad truth is that requirements.txt, despite its name, is not a full list of requirements. it's only a list of python dependencies that could be fetched from pypi by pip | 01:09 |
*** garthb has quit IRC | 01:10 | |
notmyname | eg sqlite3 is a requirement to run swift. but it's not mentioned in requirements.txt | 01:10 |
notmyname | I'm less worried about the dnspython[3] mentions. actually, I'm sortof ok with that idea, except for the way it's caused a lot of confusion over the past few days | 01:11 |
notmyname | since we aren't close to py3 support in swift today, it seems premature to add a requirement for dnspython3. can we add that later? | 01:12 |
notmyname | thus I get to my conclusion that I'd like to revert that patch | 01:12 |
notmyname | I'll leave that conversation for tomorrow. I want to make sure there's a consensus instead of a reactionary "everything's broken, undo! undo!" response | 01:20 |
timburke | notmyname: we can probably just add dnspython3 when we actually have py3 tests that need it. iirc, this was at my suggestion back in july to avoid the need for a separate requirements.txt and requirements-py3.txt | 01:21 |
timburke | either way, though, eventually we'll need to swallow this pill | 01:22 |
*** miurahr has joined #openstack-swift | 01:23 | |
*** Chavers has quit IRC | 01:45 | |
portante | notmyname: has anybody considered a swift / elasticsearch integration story? | 01:50 |
*** jrichli has joined #openstack-swift | 01:58 | |
notmyname | portante: yes. there's the openstack searchlight project. softlayer sortof has one with their metadata search. and swiftstack is working on something too | 02:07 |
portante | cool, thanks | 02:08 |
*** zhill has quit IRC | 02:12 | |
*** jerrygb_ has joined #openstack-swift | 02:16 | |
*** jerrygb has quit IRC | 02:17 | |
*** dmorita has joined #openstack-swift | 02:17 | |
*** zhill has joined #openstack-swift | 02:20 | |
*** openstackgerrit has quit IRC | 02:22 | |
*** jerrygb_ has quit IRC | 02:23 | |
*** openstackgerrit has joined #openstack-swift | 02:24 | |
*** asettle has quit IRC | 02:25 | |
*** siva_krishnan has joined #openstack-swift | 02:25 | |
*** haomaiwang has joined #openstack-swift | 02:25 | |
*** asettle has joined #openstack-swift | 02:26 | |
*** goodygum has quit IRC | 02:28 | |
*** goodygum has joined #openstack-swift | 02:28 | |
*** ctennis has quit IRC | 02:29 | |
*** jerrygb has joined #openstack-swift | 02:30 | |
openstackgerrit | Tim Burke proposed openstack/swift: Close EC fragment iterators in the GreenThread that's consuming them https://review.openstack.org/241778 | 02:30 |
*** ctennis has joined #openstack-swift | 02:30 | |
clayg | timburke: ^ nice that fixes the functest failure? | 02:31 |
timburke | clayg: it should. independently check that it doesn't regress the ChunkReadTimeout or whatever, though | 02:32 |
clayg | timburke: k i think i remember how to do that... | 02:33 |
clayg | oh - didn't the patch have diff? | 02:33 |
timburke | (also, it couldn't hurt to have other people who were seeing the func test failures try it out. notmyname i think? i know torgomatic_ couldn't reproduce it...) | 02:33 |
timburke | clayg: this buddy? https://gist.github.com/clayg/64d659bcae9991e5686c | 02:33 |
timburke | i suppose it couldn't hurt to bump it a bit *past* the threshold, too. 62s? 65? | 02:34 |
*** MooingLemur has quit IRC | 02:34 | |
clayg | timburke: looks clean to me | 02:35 |
timburke | sweet. did you see the func test failures before? | 02:35 |
*** MooingLemur has joined #openstack-swift | 02:36 | |
*** gmmaha has quit IRC | 02:37 | |
*** StevenK has quit IRC | 02:37 | |
*** clyps has quit IRC | 02:37 | |
*** philipw has quit IRC | 02:37 | |
*** rcernin has quit IRC | 02:38 | |
*** clyps has joined #openstack-swift | 02:38 | |
*** StevenK has joined #openstack-swift | 02:42 | |
*** philipw_ has joined #openstack-swift | 02:42 | |
*** gmmaha has joined #openstack-swift | 02:43 | |
*** philipw has joined #openstack-swift | 02:44 | |
*** philipw has quit IRC | 02:44 | |
clayg | timburke: i didn't go looking for them | 02:46 |
clayg | timburke: i was lead to believe you didn't notice them obviously unless you default policy is EC | 02:46 |
timburke | yup. and even then it's no sure bet | 02:47 |
clayg | sort of a gab in the integration tooling - need to get something fixed up there | 02:47 |
clayg | timburke: ok we'll i'm getting my default policy setup now - i'll try and get a a/b test with master | 02:47 |
timburke | i'm not sure that's it...the QA cluster *did* test the original change, and it passed... | 02:48 |
timburke | still, good to have more people try it, so thanks. don't worry too much, though; i'm pretty sure notmyname saw it and will be interested enough in fixing it to verify | 02:49 |
*** rjaiswal has joined #openstack-swift | 02:49 | |
*** wbhuber has joined #openstack-swift | 02:53 | |
*** haomaiwang has quit IRC | 03:01 | |
*** haomaiwang has joined #openstack-swift | 03:01 | |
*** haomaiwang has quit IRC | 03:03 | |
*** haomaiwang has joined #openstack-swift | 03:06 | |
*** zhill has quit IRC | 03:08 | |
clayg | timburke: so no functest errors on your branch with ec default - trying the other now | 03:09 |
clayg | *master | 03:09 |
openstackgerrit | Janie Richling proposed openstack/swift: Decrypting Container Listing https://review.openstack.org/214438 | 03:17 |
jrichli | I left a comment describing what was done for this ^^ | 03:22 |
clayg | timburke: yeah werx | 03:32 |
clayg | +2 | 03:32 |
notmyname | cool | 03:32 |
notmyname | timburke: thanks. I'll check it out later | 03:32 |
notmyname | started a test run to go while my kids get in bed ;-) | 03:35 |
*** gyee has quit IRC | 03:36 | |
*** lnxnut has joined #openstack-swift | 03:41 | |
*** klrmn1 has quit IRC | 03:54 | |
notmyname | timburke: worked OMM | 03:57 |
*** haomaiwang has quit IRC | 04:01 | |
*** badari has quit IRC | 04:01 | |
*** haomaiwang has joined #openstack-swift | 04:01 | |
*** siva_krishnan has quit IRC | 04:01 | |
*** wbhuber has quit IRC | 04:08 | |
*** haomaiwang has quit IRC | 04:08 | |
*** wbhuber has joined #openstack-swift | 04:09 | |
*** haomaiwang has joined #openstack-swift | 04:10 | |
*** wbhuber has quit IRC | 04:13 | |
*** jrichli has quit IRC | 04:14 | |
*** klrmn1 has joined #openstack-swift | 04:21 | |
*** klrmn2 has joined #openstack-swift | 04:25 | |
*** klrmn1 has quit IRC | 04:25 | |
*** tsg has joined #openstack-swift | 04:28 | |
*** lnxnut has quit IRC | 04:38 | |
*** mac_ified has quit IRC | 04:42 | |
*** links has joined #openstack-swift | 04:52 | |
openstackgerrit | Merged openstack/swift: Close EC fragment iterators in the GreenThread that's consuming them https://review.openstack.org/241778 | 04:55 |
*** siva_krishnan has joined #openstack-swift | 04:59 | |
timburke | clayg: notmyname: thanks! | 05:00 |
*** MVenesio has joined #openstack-swift | 05:00 | |
*** haomaiwang has quit IRC | 05:01 | |
*** haomaiwang has joined #openstack-swift | 05:01 | |
kota_ | timburke: good catch, nice work for patch 241778 | 05:04 |
patchbot | kota_: https://review.openstack.org/#/c/241778/ - Close EC fragment iterators in the GreenThread tha... | 05:04 |
timburke | kota_: thanks, i was trying to reason about it for like a week | 05:05 |
*** MVenesio has quit IRC | 05:07 | |
*** MVenesio has joined #openstack-swift | 05:07 | |
*** MVenesio_ has joined #openstack-swift | 05:13 | |
*** MVenesio has quit IRC | 05:13 | |
*** MVenesio_ has quit IRC | 05:16 | |
*** MVenesio has joined #openstack-swift | 05:17 | |
*** MVenesio has quit IRC | 05:22 | |
*** MVenesio has joined #openstack-swift | 05:22 | |
*** MVenesio has quit IRC | 05:26 | |
*** MVenesio has joined #openstack-swift | 05:26 | |
*** klrmn2 has quit IRC | 05:30 | |
*** siva_krishnan has quit IRC | 05:31 | |
*** siva_krishnan has joined #openstack-swift | 05:31 | |
*** MVenesio has quit IRC | 05:31 | |
*** MVenesio has joined #openstack-swift | 05:31 | |
*** MVenesio has quit IRC | 05:33 | |
*** MVenesio has joined #openstack-swift | 05:33 | |
*** MVenesio has quit IRC | 05:34 | |
*** rjaiswal has quit IRC | 05:35 | |
*** MVenesio has joined #openstack-swift | 05:35 | |
*** MVenesio has quit IRC | 05:38 | |
*** MVenesio has joined #openstack-swift | 05:39 | |
*** MVenesio has quit IRC | 05:40 | |
*** MVenesio has joined #openstack-swift | 05:40 | |
*** matt_____ has quit IRC | 05:44 | |
*** haomaiwang has quit IRC | 05:52 | |
*** MVenesio has quit IRC | 05:55 | |
*** haomaiwang has joined #openstack-swift | 05:55 | |
*** MVenesio has joined #openstack-swift | 05:55 | |
*** trifon has joined #openstack-swift | 05:56 | |
*** haomaiwang has quit IRC | 06:01 | |
*** haomaiwa_ has joined #openstack-swift | 06:01 | |
*** MVenesio_ has joined #openstack-swift | 06:04 | |
*** MVenesio_ has quit IRC | 06:06 | |
*** MVenesio has quit IRC | 06:06 | |
*** MVenesio has joined #openstack-swift | 06:06 | |
*** MVenesio has quit IRC | 06:09 | |
*** MVenesio has joined #openstack-swift | 06:10 | |
*** rcernin has joined #openstack-swift | 06:10 | |
*** tsg has quit IRC | 06:11 | |
*** haomaiwa_ has quit IRC | 06:12 | |
*** MVenesio has quit IRC | 06:13 | |
*** MVenesio has joined #openstack-swift | 06:14 | |
*** MVenesio has quit IRC | 06:15 | |
*** MVenesio_ has joined #openstack-swift | 06:15 | |
*** siva_krishnan has quit IRC | 06:15 | |
*** MVenesio_ has quit IRC | 06:17 | |
*** MVenesio has joined #openstack-swift | 06:17 | |
*** jamielennox is now known as jamielennox|away | 06:17 | |
*** haomaiwa_ has joined #openstack-swift | 06:21 | |
*** MVenesio has quit IRC | 06:22 | |
*** MVenesio has joined #openstack-swift | 06:23 | |
*** MVenesio has quit IRC | 06:24 | |
*** MVenesio has joined #openstack-swift | 06:25 | |
*** rohit_ has quit IRC | 06:26 | |
*** MVenesio_ has joined #openstack-swift | 06:26 | |
*** MVenesio has quit IRC | 06:27 | |
*** rcernin_ has joined #openstack-swift | 06:27 | |
*** mahatic has joined #openstack-swift | 06:30 | |
*** MVenesio has joined #openstack-swift | 06:32 | |
*** MVenesio has quit IRC | 06:33 | |
*** MVenesio has joined #openstack-swift | 06:34 | |
*** MVenesio_ has quit IRC | 06:34 | |
*** haomaiwa_ has quit IRC | 06:35 | |
*** haomaiwang has joined #openstack-swift | 06:36 | |
*** rohit_ has joined #openstack-swift | 06:40 | |
*** rjaiswal has joined #openstack-swift | 06:40 | |
*** MVenesio_ has joined #openstack-swift | 06:41 | |
*** MVenesio has quit IRC | 06:42 | |
*** MVenesio_ has quit IRC | 06:50 | |
*** MVenesio has joined #openstack-swift | 06:50 | |
*** MVenesio_ has joined #openstack-swift | 06:54 | |
*** MVenesio has quit IRC | 06:57 | |
*** haomaiwang has quit IRC | 06:58 | |
*** haomaiwa_ has joined #openstack-swift | 06:59 | |
*** haomaiwa_ has quit IRC | 07:01 | |
*** haomaiwang has joined #openstack-swift | 07:01 | |
*** pchng_ has joined #openstack-swift | 07:03 | |
*** pchng has quit IRC | 07:06 | |
*** rcernin is now known as Guest16360 | 07:08 | |
*** rcernin_ has quit IRC | 07:09 | |
*** Guest16360 has quit IRC | 07:09 | |
*** rcernin_ has joined #openstack-swift | 07:10 | |
*** MVenesio_ has quit IRC | 07:10 | |
*** MVenesio has joined #openstack-swift | 07:10 | |
*** MVenesio has quit IRC | 07:12 | |
*** MVenesio has joined #openstack-swift | 07:12 | |
*** rcernin_ is now known as rcernin | 07:13 | |
*** MVenesio has quit IRC | 07:14 | |
*** MVenesio has joined #openstack-swift | 07:14 | |
*** haomaiwang has quit IRC | 07:18 | |
*** wolsen has quit IRC | 07:23 | |
*** MVenesio has quit IRC | 07:23 | |
*** MVenesio has joined #openstack-swift | 07:23 | |
*** MVenesio has quit IRC | 07:28 | |
*** MVenesio has joined #openstack-swift | 07:29 | |
*** MVenesio has quit IRC | 07:35 | |
*** esker has quit IRC | 07:46 | |
*** haomaiwang has joined #openstack-swift | 07:51 | |
*** haomaiwang has quit IRC | 08:01 | |
*** arnox has joined #openstack-swift | 08:01 | |
*** haomaiwang has joined #openstack-swift | 08:01 | |
*** miurahr has quit IRC | 08:01 | |
*** rledisez has joined #openstack-swift | 08:14 | |
haypo | notmyname: hi. it's not possible to add the env markers on dnspython/dnspython3 later, it's a blocker point to start working on python3 | 08:20 |
haypo | notmyname: the next milestone is to have a working "tox -e py34", so we must be able to create the venv | 08:20 |
*** jamielennox|away is now known as jamielennox | 08:43 | |
*** rjaiswal has quit IRC | 08:45 | |
*** jmccarthy has quit IRC | 08:53 | |
*** ho has quit IRC | 08:53 | |
*** jmccarthy has joined #openstack-swift | 09:00 | |
*** haomaiwang has quit IRC | 09:01 | |
*** haomaiwang has joined #openstack-swift | 09:01 | |
*** openstackgerrit has quit IRC | 09:01 | |
*** openstackgerrit has joined #openstack-swift | 09:01 | |
*** dmorita has quit IRC | 09:02 | |
*** rohit_ has quit IRC | 09:06 | |
*** jordanP has joined #openstack-swift | 09:17 | |
*** joeljwright has joined #openstack-swift | 09:18 | |
*** ChanServ sets mode: +v joeljwright | 09:18 | |
*** jistr has joined #openstack-swift | 09:47 | |
*** haomaiwang has quit IRC | 10:01 | |
*** haomaiwang has joined #openstack-swift | 10:01 | |
*** marzif has joined #openstack-swift | 10:14 | |
*** openstackgerrit has quit IRC | 10:16 | |
*** openstackgerrit has joined #openstack-swift | 10:16 | |
*** esker has joined #openstack-swift | 10:46 | |
*** diogogmt has quit IRC | 10:51 | |
*** BAKfr has quit IRC | 10:54 | |
*** BAKfr has joined #openstack-swift | 10:55 | |
*** acoles_ is now known as acoles | 10:57 | |
*** resker has joined #openstack-swift | 11:00 | |
*** haomaiwang has quit IRC | 11:01 | |
*** haomaiwang has joined #openstack-swift | 11:01 | |
*** esker has quit IRC | 11:03 | |
*** resker has quit IRC | 11:07 | |
*** lpabon has joined #openstack-swift | 11:29 | |
openstackgerrit | Peter Lisák proposed openstack/swift: Log error if a local device not identified https://review.openstack.org/243040 | 11:49 |
openstackgerrit | Mahati Chamarthy proposed openstack/swift: Modify unit tests to include real crypto https://review.openstack.org/211451 | 11:56 |
*** haomaiwang has quit IRC | 12:01 | |
*** haomaiwang has joined #openstack-swift | 12:01 | |
mahatic | acoles: jrichili ^ rebased on patchset 13 of 214438 | 12:03 |
*** haomaiwang has quit IRC | 12:04 | |
*** marzif has quit IRC | 12:10 | |
*** kei_yama has quit IRC | 12:13 | |
*** jcidaho has joined #openstack-swift | 12:22 | |
*** lpabon has quit IRC | 12:27 | |
*** MVenesio has joined #openstack-swift | 12:32 | |
*** MVenesio has quit IRC | 12:33 | |
*** m_kazuhiro has quit IRC | 12:34 | |
*** jmccarthy has quit IRC | 12:35 | |
*** jmccarthy has joined #openstack-swift | 12:38 | |
*** CR7 has joined #openstack-swift | 12:45 | |
*** links has quit IRC | 12:46 | |
*** haomaiwang has joined #openstack-swift | 13:03 | |
*** jcidaho has quit IRC | 13:09 | |
*** Guest21878 has quit IRC | 13:09 | |
*** links has joined #openstack-swift | 13:13 | |
*** jcidaho has joined #openstack-swift | 13:14 | |
*** jerrygb has quit IRC | 13:17 | |
*** mac_ified has joined #openstack-swift | 13:23 | |
*** marzif has joined #openstack-swift | 13:26 | |
*** jcidaho has quit IRC | 13:28 | |
*** tsg has joined #openstack-swift | 13:29 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/swift: Updated from global requirements https://review.openstack.org/88736 | 13:34 |
*** mac_ified has quit IRC | 13:43 | |
*** itlinux has joined #openstack-swift | 13:48 | |
*** blmartin has joined #openstack-swift | 13:53 | |
*** itlinux has quit IRC | 13:53 | |
*** haomaiwang has quit IRC | 14:01 | |
*** haomaiwang has joined #openstack-swift | 14:01 | |
*** openstackgerrit has quit IRC | 14:01 | |
*** openstackgerrit has joined #openstack-swift | 14:01 | |
*** pchng_ is now known as pchng | 14:10 | |
*** tsg has quit IRC | 14:20 | |
*** petertr7_away is now known as petertr7 | 14:28 | |
*** esker has joined #openstack-swift | 14:28 | |
*** blmartin has quit IRC | 14:29 | |
*** rohit_ has joined #openstack-swift | 14:29 | |
*** itlinux has joined #openstack-swift | 14:30 | |
*** proteusguy__ has quit IRC | 14:31 | |
*** esker has quit IRC | 14:33 | |
*** itlinux has quit IRC | 14:35 | |
*** badari has joined #openstack-swift | 14:35 | |
*** proteusguy__ has joined #openstack-swift | 14:44 | |
*** jcidaho has joined #openstack-swift | 14:52 | |
*** pdardeau has joined #openstack-swift | 14:52 | |
*** jerrygb has joined #openstack-swift | 14:57 | |
*** itlinux has joined #openstack-swift | 14:59 | |
*** haomaiwang has quit IRC | 15:01 | |
*** wbhuber has joined #openstack-swift | 15:01 | |
*** blmartin has joined #openstack-swift | 15:01 | |
*** haomaiwang has joined #openstack-swift | 15:01 | |
*** wbhuber_ has joined #openstack-swift | 15:01 | |
*** CR7 has quit IRC | 15:03 | |
*** itlinux has quit IRC | 15:03 | |
*** lcurtis has joined #openstack-swift | 15:05 | |
*** wbhuber has quit IRC | 15:05 | |
*** marzif_ has joined #openstack-swift | 15:08 | |
*** marzif has quit IRC | 15:12 | |
*** breitz has quit IRC | 15:18 | |
*** breitz has joined #openstack-swift | 15:19 | |
*** tsg has joined #openstack-swift | 15:29 | |
Guest90281 | does anyone know how to make sure the proxyserver listens on all IPs instead of just loopback 127.0.0.1:8080 ? | 15:35 |
*** chsc has joined #openstack-swift | 15:36 | |
*** jrichli has joined #openstack-swift | 15:38 | |
*** siva_krishnan has joined #openstack-swift | 15:41 | |
Guest90281 | got it .. just edit proxy-server.conf to have 0.0.0.0 instead | 15:43 |
*** petertr7 is now known as petertr7_away | 15:44 | |
*** jistr is now known as jistr|call | 15:44 | |
*** petertr7_away is now known as petertr7 | 15:44 | |
*** jlhinson has joined #openstack-swift | 15:45 | |
*** CaioBrentano has joined #openstack-swift | 15:46 | |
notmyname | good morning | 15:50 |
*** jlhinson has quit IRC | 15:56 | |
haypo | notmyname: hi. tsg told me that he played with pip on a fresh VM to try to understand the pbr/pip/env marker issues | 15:57 |
notmyname | haypo: AIUI, the "issues" are resolved by reinstalling updated versions of everything. so it's not that it isn't solvable, just frustrating | 15:58 |
haypo | tsg: if i recall correctly, pbr 1.6 doesn't support env markers and so fail at "pip install -r requirements.txt" ? | 15:58 |
tsg | nah | 15:58 |
tsg | notmyname: on my fresh trusty install, the only thing I had to do to fix was to upgrade pip to 1.7.x | 15:59 |
notmyname | ok | 15:59 |
haypo | notmyname: if i understood correctly, your problem is that developers working on swift have to update pip and/or pbr, otherwise they cannot installl swift anymore, right? | 15:59 |
notmyname | tsg: and probably use pip setuptools instead of distro packaged one? | 15:59 |
tsg | the problem is if you upgrade pip with "pip install -U pip", it doesn't uninstall the pip installed by python-pip package | 15:59 |
haypo | notmyname: i hope that deployers don't use virtualenv, setup.py or things like that, but regular linux packages | 15:59 |
tsg | yes | 15:59 |
*** jcidaho has quit IRC | 15:59 | |
tsg | that's the key .. when you do "pip install -U pip" it installed the new pip to /usr/local/bin and the system still keeps using /usr/bin/pip | 16:00 |
tsg | (1.5.x on trusty) | 16:00 |
haypo | tsg: i don't understand your /usr/local issue. i'm using regular "pip install -U pip" and /usr/bin/pip* are updated | 16:00 |
haypo | tsg: but i start from a more recent OS, fedora 22 or 23 usually | 16:00 |
tsg | haypo: I don't know but on Ubuntu they go to /usr/local/bin it appears | 16:00 |
*** haomaiwang has quit IRC | 16:01 | |
tsg | haypo: CI uses Ubuntu not Fedora | 16:01 |
notmyname | haypo: yeah, that's most likely. deployers build and deploy their own packages or use distro provided ones | 16:01 |
haypo | tsg: CI uses DevStack which handles well pbr & pip | 16:01 |
*** haomaiwang has joined #openstack-swift | 16:01 | |
haypo | tsg: i'm quite sure that DevStack updates pbr & pip very early. otherwise, bad things happen :) | 16:01 |
notmyname | haypo: I understand the dnspython version markers now (why that's needed). I still think pbr in requirements isn't needed | 16:02 |
tsg | either way, notmyname: when I upgrade pip to 1.7.x, uninstall python-pip and then reload my shell to clear any old paths etc, the marker errors are not seen | 16:02 |
notmyname | tsg: ok. yeah, that's what I'd expect. thanks for looking into it | 16:02 |
haypo | notmyname: about pbr, i don't care of having it in requirements.txt. again, we can remove it from requirements.txt, maybe add the requirements to setup.py, maybe don't specify the minimum version anywhere (except in the doc?) | 16:02 |
notmyname | it's already specified in setup.py | 16:03 |
*** jistr|call is now known as jistr | 16:03 | |
haypo | notmyname: for setup.py, i mean specify the minimum pbr version. as adviced by openstack requirements | 16:03 |
haypo | putting pbr>=x.y in setup.py doesn't cover all use cases because setup.py is based on setuptools which is unable to upgrade itself | 16:04 |
haypo | and if i recall correctly, recent versions of pbr require a recent version of setuptools | 16:04 |
haypo | all the stuff are linked altogether for our pleasure | 16:05 |
notmyname | yeah | 16:05 |
notmyname | but since requirements.txt is parsed *after* setup.py, specifying it there doesn't actually do anything extra for getting swift installed | 16:05 |
*** trifon has quit IRC | 16:08 | |
*** klrmn1 has joined #openstack-swift | 16:08 | |
*** rcernin has quit IRC | 16:08 | |
* notmyname needs to step away for a bit | 16:09 | |
*** pgbridge has joined #openstack-swift | 16:11 | |
*** mzhou has joined #openstack-swift | 16:13 | |
*** links has quit IRC | 16:13 | |
*** wolsen has joined #openstack-swift | 16:13 | |
*** marzif_ has quit IRC | 16:16 | |
timburke | haypo: specifying a minimum pbr version in setup.py isn't sufficient, either; it won't be available in time to be useful. i remember talking about it with lifeless months ago in another context: http://eavesdrop.openstack.org/irclogs/%23openstack-swift/%23openstack-swift.2015-07-31.log.html#t2015-07-31T19:42:45 | 16:18 |
*** tongli has joined #openstack-swift | 16:20 | |
haypo | timburke: it helps at least users to guess that they need :) | 16:21 |
haypo | timburke: if they open setup.py | 16:21 |
haypo | timburke: but yes, it doesn't enough to cover all use cases | 16:23 |
notmyname | timburke: that friday rant about pbr/whatever was only 4 months ago. I guess we get to start scheduling one every few months? | 16:28 |
*** mahatic has quit IRC | 16:30 | |
jrichli | since I started swift in Feb 2015, the only times that I remember having to do more than just the usual setup command was back then (4 months ago) and now | 16:33 |
openstackgerrit | Peter Lisák proposed openstack/python-swiftclient: Unification of manpages and docstrings https://review.openstack.org/245227 | 16:33 |
*** klrmn1 has quit IRC | 16:35 | |
wbhuber_ | notmyname: planning to update this page to reflect the object storage installation for OS liberty if anything major has been changed: http://docs.openstack.org/developer/swift/howto_installmultinode.html | 16:42 |
wbhuber_ | notmyname: i am planning to update my cluster to swift 2.5.1 from pip | 16:43 |
*** diazjf has joined #openstack-swift | 16:45 | |
*** jistr is now known as jistr|call | 16:46 | |
*** esker has joined #openstack-swift | 16:49 | |
notmyname | wbhuber_: great! thanks | 16:51 |
notmyname | bus is coming, commute time | 16:51 |
*** arnox has quit IRC | 16:56 | |
*** CaioBrentano has quit IRC | 16:58 | |
*** klrmn1 has joined #openstack-swift | 16:59 | |
*** klrmn1 has quit IRC | 16:59 | |
*** haomaiwang has quit IRC | 17:01 | |
*** haomaiwang has joined #openstack-swift | 17:01 | |
*** diazjf has quit IRC | 17:04 | |
*** gyee has joined #openstack-swift | 17:04 | |
*** diazjf has joined #openstack-swift | 17:06 | |
*** marzif has joined #openstack-swift | 17:07 | |
*** jistr|call is now known as jistr | 17:08 | |
*** jlhinson has joined #openstack-swift | 17:11 | |
*** jistr has quit IRC | 17:12 | |
*** rledisez has quit IRC | 17:24 | |
*** CaioBrentano has joined #openstack-swift | 17:24 | |
openstackgerrit | Tim Burke proposed openstack/swift: Add container and account reverse listings https://review.openstack.org/120709 | 17:25 |
openstackgerrit | Tim Burke proposed openstack/swift: Have versioned_writes use reverse listings https://review.openstack.org/234391 | 17:27 |
*** haomaiwang has quit IRC | 17:30 | |
*** daemontool_ has quit IRC | 17:32 | |
clayg | timburke: what's the over under on me finding another bug in reverse listings with clist.py? | 17:33 |
timburke | clayg: i'm feeling good about it. best version yet :) | 17:34 |
timburke | and hey, once we find (and fix) *all* the bugs, we can merge it! | 17:35 |
*** diazjf has quit IRC | 17:37 | |
*** zhill has joined #openstack-swift | 17:37 | |
*** CaioBrentano has quit IRC | 17:42 | |
*** daemontool_ has joined #openstack-swift | 17:42 | |
*** CaioBrentano has joined #openstack-swift | 17:44 | |
*** diazjf has joined #openstack-swift | 17:44 | |
openstackgerrit | John Dickinson proposed openstack/swift: remove pbr from requirements.txt. It's not a run-time dependency https://review.openstack.org/245266 | 17:46 |
notmyname | haypo: ^ | 17:46 |
*** daemontool_ has quit IRC | 17:49 | |
*** BAKfr has quit IRC | 17:51 | |
*** petertr7 is now known as petertr7_away | 17:51 | |
*** marzif has quit IRC | 17:54 | |
*** BAKfr has joined #openstack-swift | 17:56 | |
*** jrichli has quit IRC | 18:01 | |
*** petertr7_away is now known as petertr7 | 18:01 | |
acoles | clayg: ack and thanks for comment on patch 135380. i like your idea but be a while before i cam implement it (i'm just here for a short while today and away again next week) | 18:03 |
patchbot | acoles: https://review.openstack.org/#/c/135380/ - Update container on fast-POST | 18:03 |
acoles | clayg: also, swift_bytes appended to swift_bytes + POST updates to content-type is also going to take me some time to work around | 18:04 |
acoles | clayg: i think it can be handled, but will need "more code" | 18:04 |
acoles | argh, i meant to type " swift_bytes appended to content-type" | 18:05 |
*** siva_krishnan has quit IRC | 18:06 | |
*** jlhinson has quit IRC | 18:06 | |
*** diazjf has quit IRC | 18:07 | |
*** klrmn1 has joined #openstack-swift | 18:08 | |
*** pdardeau has quit IRC | 18:17 | |
*** joeljwright has quit IRC | 18:17 | |
acoles | peluse: thanks for your reviews, hope to catch up on them in a few days | 18:22 |
*** esker has quit IRC | 18:31 | |
*** jrichli has joined #openstack-swift | 18:44 | |
*** mfalatic has quit IRC | 18:47 | |
*** siva_krishnan has joined #openstack-swift | 18:50 | |
clayg | ohia | 18:59 |
clayg | acoles: nice work | 19:00 |
*** badari_ has joined #openstack-swift | 19:00 | |
clayg | acoles: I think jrichli also needs to "fix" the swift_bytes appended to content-type a little bit | 19:01 |
acoles | clayg: yes. we're working on that too. | 19:01 |
*** badari has quit IRC | 19:03 | |
*** esker has joined #openstack-swift | 19:03 | |
acoles | fun fun fun | 19:03 |
*** siva_krishnan has quit IRC | 19:04 | |
clayg | acoles: pain pain pain | 19:04 |
jrichli | storing infomation is hard ;-) | 19:04 |
acoles | no pain no gain | 19:04 |
*** Guest66106 has joined #openstack-swift | 19:04 | |
notmyname | jrichli: only if you want to get it back later | 19:04 |
Guest66106 | exit | 19:05 |
*** Guest66106 has quit IRC | 19:05 | |
*** garthb has joined #openstack-swift | 19:05 | |
jrichli | notmyname: very true! | 19:05 |
clayg | l84 Guest90281 ! | 19:05 |
Guest90281 | clayg: I'm sensing that it's a confirmation that what I did is right ... but I'm not able to get the reference - what's l84 ? | 19:09 |
*** CaioBrentano has quit IRC | 19:09 | |
acoles | jrichli: if I disable versioned writes I see func test errors drop from 90 to < 20. i.e. a whole bunch of tests start to pass. oh boy. | 19:10 |
clayg | Guest90281: oh you typed in "exit" - I thought you were leaving so I said "later" | 19:10 |
acoles | so a bunch of those errors are in test setup due to some bad state that other tests have left behind. | 19:11 |
jrichli | acoles: previous to the patch your are working with: we already had 2 cards related to versioned writes. you can look at those cards for baseline | 19:11 |
peluse | acoles: cool, will be back on them here again shortly as well. are you done with your legal mumbo jumbo? | 19:11 |
clayg | Guest90281: I think it's a typo of l8r - which is a phonetic 1337 speak for later - I think most people find it's easier to ignore me - sorry about that | 19:11 |
Guest90281 | Woah .. I did ? nope .. not leaving .. and thanks for the shortcut | 19:12 |
Guest90281 | and yes I guessed that it should be r instead of 8 - now. | 19:12 |
*** petertr7 is now known as petertr7_away | 19:12 | |
Guest90281 | instead of 4. | 19:12 |
clayg | oh whoa - no Guest66106 *said* exit! hard to keep you guys stright | 19:12 |
clayg | you should change your handle! | 19:12 |
acoles | peluse: not yet. i got let off today but have to go back next week. | 19:12 |
acoles | peluse: in our system i may get to act on multiple cases in a 2 week window | 19:13 |
Guest90281 | clayg: I tried to register myself as papercup - but apparently smuxi client has some weird stale handle issue going on - not allowing me to change it back | 19:13 |
clayg | bummer | 19:13 |
*** badari_ is now known as badari | 19:13 | |
*** Guest33827 has joined #openstack-swift | 19:13 | |
*** CaioBrentano has joined #openstack-swift | 19:16 | |
jrichli | acoles: yes, i noticed that there was some sort of state thing going on from previous tests | 19:16 |
openstackgerrit | Zack M. Davis proposed openstack/swift: remove remaining simplejson uses https://review.openstack.org/240596 | 19:17 |
acoles | jrichli: ok i think i fugured out whats happening | 19:26 |
*** thumpba has joined #openstack-swift | 19:26 | |
acoles | jrichli: it all broke becaue you fixed it :) | 19:26 |
*** petertr7_away is now known as petertr7 | 19:26 | |
acoles | jrichli: try patching the keymaster to use the *same* key for containers and objects i.e. the same for everything (just set key_id="fixed") | 19:28 |
jrichli | acoles : ok. you have peaked my curiosity | 19:29 |
*** jlhinson has joined #openstack-swift | 19:29 | |
acoles | jrichli: the state cleanup starts to work! | 19:30 |
jrichli | acoles: this just gets more and more interesting | 19:30 |
acoles | my guess is that object copies cause container updates with the wrong content type cipher text - the copy ends up sending the object key encrypted c-type in the container update | 19:31 |
acoles | and then, when the container is listed (which tests will do to try to cleanup) the decrypter uses the container key and the result is garbage which causes the json/xml processing to barf | 19:32 |
*** pdardeau has joined #openstack-swift | 19:32 | |
acoles | jrichli: i am down to FAILED (SKIP=12, errors=7, failures=17) | 19:32 |
acoles | jrichli: but before you fixed the content-type crypt meta encoding in patchset 14 we never even *tried* to decrypt the container listing, so somehow avoided the barfs. | 19:33 |
*** thumpba has quit IRC | 19:34 | |
acoles | jrichli: thats a hypothesis of course ^^ :) | 19:34 |
acoles | jrichli: or, to summarize in another way, today i achieved nothing :D | 19:34 |
jrichli | acoles: ok, sounds like your sluthing skills have paid off :-) but i am still confused because the base64 encoding work-around should have revealed this a long time ago too, right? | 19:35 |
*** thumpba has joined #openstack-swift | 19:35 | |
jrichli | acoles: I donno. I gotta stew on all this after I take some sort of mental break today. My brain just doesn't want to dig very deep right now. | 19:37 |
jrichli | acoles: plus, the vm i was working in is no longer responding to mouse movement :-( | 19:37 |
acoles | jrichli: idk. like i said, its a hypothesis. | 19:38 |
acoles | jrichli: sounds like you and your vm are in the same place ;) | 19:38 |
acoles | "vmpathy" | 19:38 |
jrichli | yep! | 19:38 |
acoles | jrichli: i'm scrapping the email i was writing. i thought i had actually improved things but realise now i just got confused by the test state coupling. | 19:40 |
jrichli | acoles: oh, ok. i bet i might have learned something by reading it anyway, but whatever :-) | 19:42 |
*** thumpba has quit IRC | 19:44 | |
*** thumpba has joined #openstack-swift | 19:45 | |
*** diazjf has joined #openstack-swift | 19:48 | |
*** esker has quit IRC | 19:48 | |
*** esker has joined #openstack-swift | 19:49 | |
acoles | jrichli: have a good weekend hope, you get some rest | 19:52 |
jrichli | acoles: thanks! have a good time as a juror :-) | 19:53 |
*** acoles is now known as acoles_ | 19:53 | |
*** proteusguy__ has quit IRC | 20:00 | |
*** proteusguy_ has joined #openstack-swift | 20:04 | |
*** thumpba has quit IRC | 20:05 | |
*** thumpba has joined #openstack-swift | 20:07 | |
*** alejandrito has joined #openstack-swift | 20:16 | |
*** thumpba has quit IRC | 20:18 | |
*** thumpba has joined #openstack-swift | 20:19 | |
*** siva_krishnan has joined #openstack-swift | 20:21 | |
*** thumpba has quit IRC | 20:21 | |
*** jamielennox is now known as jamielennox|away | 20:23 | |
*** thumpba has joined #openstack-swift | 20:26 | |
openstackgerrit | Zack M. Davis proposed openstack/swift: remove Python 2.6-specific logging workaround https://review.openstack.org/245324 | 20:30 |
*** haomaiwang has joined #openstack-swift | 20:31 | |
*** Shrews has joined #openstack-swift | 20:32 | |
Shrews | Hello! The infra project, shade, is using swift service to do object uploading (see https://github.com/openstack-infra/shade/blob/master/shade/openstackcloud.py#L3347-L3355). We've had this code for some time, and I know at one point it *did* work. But our functional tests have been broken (unnoticed), and now we see that the iterator returned from the upload() method is not returning what we expect (a dict | 20:35 |
Shrews | with the 'success' attribute). | 20:35 |
*** haomaiwang has quit IRC | 20:35 | |
Shrews | Instead, we get back a string: 'gi_running' | 20:35 |
Shrews | Did this change at some point? | 20:36 |
Shrews | I can't find *any* examples of using this... so hard to tell what we're doing wrong. | 20:37 |
openstackgerrit | Tim Burke proposed openstack/swift: Remove references to now-missing havana docs https://review.openstack.org/245326 | 20:40 |
*** petertr7 is now known as petertr7_away | 20:44 | |
*** CaioBrentano has quit IRC | 20:47 | |
*** thumpba has quit IRC | 20:49 | |
wbhuber_ | timburke, notmyname: looks good ^ thx | 20:53 |
*** thumpba has joined #openstack-swift | 20:54 | |
*** wbhuber_ has quit IRC | 20:55 | |
*** wbhuber has joined #openstack-swift | 20:55 | |
*** wbhuber_ has joined #openstack-swift | 20:56 | |
Shrews | oh, ignore my question. just found our bug | 20:58 |
timburke | Shrews: you're submitting a single upload job there and then iterating over the result, right? won't that mean we're iterating over the keys in the dict? | 20:58 |
timburke | ah, never mind :) | 20:58 |
Shrews | timburke: we were inadvertently trashing the returned generator | 20:58 |
*** jlhinson has quit IRC | 21:00 | |
*** wbhuber has quit IRC | 21:00 | |
*** jlhinson has joined #openstack-swift | 21:00 | |
*** wbhuber_ has quit IRC | 21:00 | |
*** mzhou_ has joined #openstack-swift | 21:01 | |
*** diazjf has quit IRC | 21:01 | |
*** mzhou has quit IRC | 21:03 | |
*** mzhou_ is now known as mzhou | 21:03 | |
*** petertr7_away is now known as petertr7 | 21:06 | |
*** siva_krishnan has quit IRC | 21:07 | |
*** siva_krishnan has joined #openstack-swift | 21:08 | |
*** garthb has quit IRC | 21:11 | |
*** Guest33827 has left #openstack-swift | 21:14 | |
notmyname | tsg: just got back from a meeting. I saw you saying soemting in infra about pyeclib. what's the summary? | 21:16 |
tsg | notmyname: I was talking to clarkb and mordred about getting liberasurecode into the CI slaves. One of the questions was which CI variants (precise, trusty, centos6/7, etc) that the package needs to be added for - apparently the gate-swift-python27 jobs are run on precise, trusty and centos6 at the moment, but centos6 and precise will be eliminated by the end of the month. | 21:20 |
*** blmartin has quit IRC | 21:21 | |
notmyname | tsg: what's needed from our side? and when can we get the updated pyeclib stuff landed? | 21:21 |
*** bill_az has joined #openstack-swift | 21:21 | |
tsg | notmyname: I noticed yesterday that someone on the Debian team had added a libjerasure2 dependency to the liberasurecode1 package: https://packages.debian.org/sid/liberasurecode1 | 21:22 |
tsg | zigo is working on a new build right now to fix that | 21:22 |
tsg | (remove that) | 21:22 |
notmyname | ok | 21:23 |
tsg | notmyname: I have an active bug https://bugs.launchpad.net/trusty-backports/+bug/1515710 to backport the stuff to trusty | 21:23 |
openstack | Launchpad bug 1515710 in trusty-backports "Please backport liberasurecode-1.1.0, python-pyeclib-1.1.1 to trusty" [Undecided,New] | 21:23 |
notmyname | tsg: ok. and those needt o get build and deployed to the CI boxes before https://review.openstack.org/#/c/244287/ can land? | 21:23 |
tsg | notmyname: the only step after that is to get the package included in https://github.com/openstack-infra/system-config/blob/master/modules/openstack_project/manifests/jenkins_params.pp | 21:23 |
tsg | notmyname: yes - in parallel, I am also talking to clarkb etc to see how the wheel issue can be worked around so we can get the swift reqs patch landed sooner | 21:24 |
notmyname | ok | 21:24 |
notmyname | tsg: thanks for working on it | 21:25 |
tsg | notmyname: np | 21:25 |
*** diazjf has joined #openstack-swift | 21:25 | |
*** thumpba has quit IRC | 21:26 | |
notmyname | seems that might be the same thing blocking https://review.openstack.org/#/c/214206/ | 21:26 |
zigo | tsg: notmyname: liberasurecode 1.1.0-2 uploaded with libjerasure2 dependency removed. | 21:26 |
tsg | zigo: thanks a lot! :) | 21:27 |
tsg | zigo: let me try a backport and comment on the trusty backport bug so it can move forward | 21:27 |
zigo | It will reach Debian mirrors within at least 5 hours (next dak run is in more than 4 hours...) | 21:27 |
notmyname | tsg: zigo: isn't the difference between 1.1.1 and 1.1.0 something about a path? didn't we have an upgrade problem wtih 1.1.0? | 21:27 |
tsg | notmyname: this is liberasurecode only | 21:27 |
zigo | Path? | 21:27 |
notmyname | tsg: oh ok | 21:28 |
tsg | we didn't have to do a 1.1.1 for liberasurecode | 21:28 |
notmyname | but we did | 21:28 |
*** thumpba has joined #openstack-swift | 21:28 | |
notmyname | but we didn't have to? | 21:28 |
tsg | notmyname: nope .. it is still 1.1.0 | 21:28 |
notmyname | oh ok | 21:28 |
tsg | notmyname: zigo simply rebuilt a 1.1.0-2 with the same source, with jerasure2 removed from dependencies .. | 21:29 |
notmyname | tsg: ah, yes, I see now | 21:30 |
*** david-lyle has quit IRC | 21:34 | |
*** wbhuber has joined #openstack-swift | 21:48 | |
*** wbhuber has quit IRC | 21:48 | |
*** wbhuber has joined #openstack-swift | 21:48 | |
*** wbhuber_ has joined #openstack-swift | 21:55 | |
*** Shrews has left #openstack-swift | 21:56 | |
*** wbhuber has quit IRC | 21:57 | |
*** chsc has quit IRC | 22:01 | |
*** jrichli has quit IRC | 22:09 | |
*** thumpba has quit IRC | 22:13 | |
*** thumpba has joined #openstack-swift | 22:15 | |
*** petertr7 is now known as petertr7_away | 22:19 | |
*** breitz has quit IRC | 22:25 | |
*** breitz has joined #openstack-swift | 22:25 | |
*** alejandrito has quit IRC | 22:32 | |
*** wbhuber_ is now known as wbhuber | 22:33 | |
*** thumpba has quit IRC | 22:36 | |
*** pdardeau has quit IRC | 22:37 | |
*** thumpba has joined #openstack-swift | 22:37 | |
*** thumpba has quit IRC | 22:43 | |
*** Guest90281 is now known as layzee | 22:44 | |
*** jlhinson has quit IRC | 22:45 | |
*** thumpba has joined #openstack-swift | 22:46 | |
*** thumpba has quit IRC | 22:50 | |
*** thumpba has joined #openstack-swift | 22:54 | |
*** thumpba has quit IRC | 22:55 | |
*** siva_krishnan has quit IRC | 23:00 | |
*** siva_krishnan has joined #openstack-swift | 23:01 | |
*** mac_ified has joined #openstack-swift | 23:01 | |
*** badari has quit IRC | 23:10 | |
*** diazjf has quit IRC | 23:10 | |
*** diazjf has joined #openstack-swift | 23:12 | |
*** diazjf has quit IRC | 23:13 | |
*** breitz has quit IRC | 23:16 | |
*** siva_krishnan has quit IRC | 23:24 | |
*** siva_krishnan has joined #openstack-swift | 23:25 | |
openstackgerrit | Samuel Merritt proposed openstack/swift: Monkeypatch everything the same https://review.openstack.org/245375 | 23:27 |
*** siva_krishnan has quit IRC | 23:28 | |
*** siva_krishnan has joined #openstack-swift | 23:29 | |
*** zhill has quit IRC | 23:30 | |
*** jlhinson has joined #openstack-swift | 23:32 | |
*** okdas has quit IRC | 23:32 | |
*** okdas has joined #openstack-swift | 23:33 | |
*** siva_krishnan has quit IRC | 23:33 | |
*** siva_krishnan has joined #openstack-swift | 23:33 | |
*** okdas has quit IRC | 23:33 | |
*** okdas has joined #openstack-swift | 23:33 | |
*** lcurtis has quit IRC | 23:34 | |
*** km has joined #openstack-swift | 23:37 | |
*** km is now known as Guest98982 | 23:37 | |
*** siva_krishnan has quit IRC | 23:40 | |
*** wbhuber has quit IRC | 23:51 | |
*** mzhou has quit IRC | 23:55 | |
*** thumpba has joined #openstack-swift | 23:56 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!