*** gyee has quit IRC | 01:01 | |
openstackgerrit | Merged openstack/swift master: xlo: 5xx while validating first segment is a server error https://review.opendev.org/762738 | 01:13 |
---|---|---|
openstackgerrit | Pete Zaitcev proposed openstack/swift master: proxy: stop sending frags to PyECLib with a Queue https://review.opendev.org/704892 | 03:14 |
*** rcernin has quit IRC | 03:22 | |
*** rcernin has joined #openstack-swift | 03:23 | |
*** tkajinam has quit IRC | 04:40 | |
*** tkajinam has joined #openstack-swift | 04:40 | |
openstackgerrit | Pete Zaitcev proposed openstack/swift master: proxy: stop sending frags to PyECLib with a Queue https://review.opendev.org/704892 | 04:58 |
*** evrardjp has joined #openstack-swift | 05:33 | |
*** rpittau|afk is now known as rpittau | 06:52 | |
*** rcernin has quit IRC | 06:55 | |
*** rcernin has joined #openstack-swift | 07:04 | |
*** dsariel has joined #openstack-swift | 07:34 | |
*** rcernin has quit IRC | 07:53 | |
*** baojg has quit IRC | 08:06 | |
*** baojg has joined #openstack-swift | 08:07 | |
*** rcernin has joined #openstack-swift | 09:33 | |
openstackgerrit | zhufl proposed openstack/swift master: Fix invalid argument formatting in exception messages https://review.opendev.org/763536 | 09:34 |
*** rcernin has quit IRC | 09:49 | |
*** openstackgerrit has quit IRC | 10:25 | |
*** rcernin has joined #openstack-swift | 10:51 | |
*** rcernin has quit IRC | 10:56 | |
*** dsariel has quit IRC | 11:38 | |
*** dsariel has joined #openstack-swift | 11:38 | |
*** dsariel has quit IRC | 12:31 | |
*** dsariel has joined #openstack-swift | 12:31 | |
-openstackstatus- NOTICE: The Gerrit service at review.opendev.org will be offline starting at 15:00 UTC (roughly two hours from now) for a weekend upgrade maintenance: http://lists.opendev.org/pipermail/service-announce/2020-October/000012.html | 13:03 | |
-openstackstatus- NOTICE: The Gerrit service at review.opendev.org will be offline starting at 15:00 UTC (roughly one hour from now) for a weekend upgrade maintenance: http://lists.opendev.org/pipermail/service-announce/2020-October/000012.html | 14:02 | |
*** rpittau is now known as rpittau|afk | 14:53 | |
-openstackstatus- NOTICE: The Gerrit service at review.opendev.org is offline for a weekend upgrade maintenance, updates will be provided once it's available again: http://lists.opendev.org/pipermail/service-announce/2020-October/000012.html | 15:05 | |
zaitcev | > Friday in U.S. | 15:39 |
zaitcev | > Weekend Upgrade Maintenance | 15:39 |
zaitcev | > Must be Israel and better be up on Sunday | 15:39 |
*** dsariel has quit IRC | 15:42 | |
*** baojg has quit IRC | 15:46 | |
*** gyee has joined #openstack-swift | 16:32 | |
acoles | timburke: I was just typing comments on https://review.opendev.org/#/c/744270/4 ... but apparently it is the weekend already! | 17:04 |
patchbot | No data found for patch 744270 | 17:04 |
timburke | 🎉 | 17:04 |
acoles | However, in summary, I think the exception you're catching can be caused in 'normal' ssync operation | 17:05 |
acoles | I wrote a patch to fix that, which I just pushed to gerr.... | 17:05 |
timburke | yeah, it caught me by surprise, too. i guess i wasn't subscribed to http://lists.opendev.org/cgi-bin/mailman/listinfo/service-announce ? | 17:05 |
*** klamath_atx has quit IRC | 17:24 | |
zaitcev | I think I see what Romain's patch to get rid of Queue is doing differently, and it makes it fail in the gate. | 19:03 |
timburke | oh, zaitcev: i just found http://lists.openstack.org/pipermail/openstack-discuss/2020-November/018800.html -- might interest you wrt RBAC stuff in case you missed it, too | 19:11 |
zaitcev | timburke: thanks | 19:12 |
*** klamath_atx has joined #openstack-swift | 20:22 | |
*** klamath_atx has quit IRC | 20:48 | |
*** klamath_atx has joined #openstack-swift | 21:08 | |
*** klamath_atx has quit IRC | 21:14 | |
*** klamath_atx has joined #openstack-swift | 21:16 | |
*** klamath_atx has quit IRC | 21:20 | |
*** klamath_atx has joined #openstack-swift | 21:21 | |
*** klamath_atx has quit IRC | 21:27 | |
*** klamath_atx has joined #openstack-swift | 21:42 | |
*** klamath_atx has quit IRC | 21:51 | |
*** klamath_atx has joined #openstack-swift | 21:54 | |
clayg | wait... TypeError: sendall() argument 1 must be string or buffer, not generator - how do you tell swiftclient to upload a generator? 🤔 | 22:06 |
zaitcev | is this a difference between an iterator and generator | 22:08 |
timburke | eh? seems to be working for me: `conn.put_object('c', 'o', contents=gen())` where gen just yields out b'1', b'2', b'3' | 22:11 |
zaitcev | see | 22:11 |
zaitcev | gen() is incocation | 22:11 |
zaitcev | gen is just naked generator, don't try to pass it | 22:12 |
timburke | gen is just a function -- type(gen()) is <class 'generator'> | 22:12 |
clayg | content_length was messing it up - in my case I knew how much my generator was going to yield so I was hoping it wouldn't do a chunked PUT | 22:13 |
zaitcev | oh | 22:14 |
timburke | ah -- i feel like timur has had similar complaints before... | 22:14 |
clayg | yes! I thought about asking him! 😁 | 22:14 |
clayg | I don't see where our code is making the distinction - i think it must actually be down in requests somewhere 🤔 | 22:15 |
*** ab-a has quit IRC | 22:17 | |
timburke | https://github.com/kennethreitz/requests/issues/1648 akes it seem like it might get fixed in requests 3 -- but the last update indicating that was more than 3 years ago and pypi says 2.25.0 is the current version, so... | 22:23 |
timburke | i suppose i wouldn't mind updating https://github.com/openstack/python-swiftclient/blob/master/swiftclient/utils.py#L319 to be able to take iterables (in addition to the file-likes it expects now), but there's always the issue of discoverability | 22:25 |
*** ab-a has joined #openstack-swift | 22:28 | |
*** klamath_atx has quit IRC | 23:34 | |
*** klamath_atx has joined #openstack-swift | 23:35 |
Generated by irclog2html.py 2.17.2 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!