DeprecationWarning about passing non-bytes header values #2312
Labels
No Label
0.2.0
0.3.0
0.4.0
0.5.0
0.5.1
0.6.0
0.6.1
0.7.0
0.8.0
0.9.0
1.0.0
1.1.0
1.10.0
1.10.1
1.10.2
1.10a2
1.11.0
1.12.0
1.12.1
1.13.0
1.14.0
1.15.0
1.15.1
1.2.0
1.3.0
1.4.1
1.5.0
1.6.0
1.6.1
1.7.0
1.7.1
1.7β
1.8.0
1.8.1
1.8.2
1.8.3
1.8β
1.9.0
1.9.0-s3branch
1.9.0a1
1.9.0a2
1.9.0b1
1.9.1
1.9.2
1.9.2a1
LeastAuthority.com automation
blocker
cannot reproduce
cloud-branch
code
code-dirnodes
code-encoding
code-frontend
code-frontend-cli
code-frontend-ftp-sftp
code-frontend-magic-folder
code-frontend-web
code-mutable
code-network
code-nodeadmin
code-peerselection
code-storage
contrib
critical
defect
dev-infrastructure
documentation
duplicate
enhancement
fixed
invalid
major
minor
n/a
normal
operational
packaging
somebody else's problem
supercritical
task
trivial
unknown
was already fixed
website
wontfix
worksforme
No Milestone
No Assignees
3 Participants
Notifications
Due Date
No due date set.
Reference: tahoe-lafs/trac-2024-07-25#2312
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
(https://tahoe-lafs.org/buildbot-tahoe-lafs/builders/Marcus%20Cygwin%20WinXP/builds/26/steps/test/logs/stdio)
I don't know why this is warning only on the "Marcus Cygwin WinXP" builder.
Ah, it is also happening on the Python 2.6 Travis build: https://travis-ci.org/tahoe-lafs/tahoe-lafs/jobs/36701619
The common factor is Python 2.6.
This is low-priority, but it'd be nice to fix. It appears that something is calling http.Request.write with a unicode string, but we need a larger stack trace to figure out what's happening.
A minimal STR is to test
test_web.Web.test_GET_DIRURL_json
under python2.6 .It turns out that the twisted.web code is expecting the
Content-Length
header to contain bytes (like all other headers, who knew?). Three Tahoe code paths (in web/common.py and web/filenode.py) fill it with an integer, which takes advantage of a("%s" % value)
fallback.A DeprecationWarning to complain about non-bytes was added in Twisted-12.3, probably to guard against unicode header values, but in this case it's triggering on our
IntType
. Twisted-12.3 is also whentwisted.python.compat.intToBytes(n)
was added to make this easier, but it isn't present in 11.0-12.2, which is what we use on windows. So we'll need our ownintToBytes
function.Oh, and
category=DeprecationWarning
is globally disabled in python2.7, because(?) they assumed it would only be used for features implemented by python itself, and "2.7 is the last one". I think that's why this doesn't appear in py2.7 .Sigh, that seems like a dangerous misfeature to me. Should Twisted (and other projects) use a subclass or alternative to
DeprecationWarning
?After fixing that, I found one other instance, when various web requests use
nevow.rend.Page
's feature ofself.addSlash==True
. This code path causessetHeader("location", url)
to be called with anevow.url.URL
instance, instead of a string. There's no good way for us to fix this from tahoe.. the fix really needs to be in Nevow itself. Filed as https://github.com/twisted/nevow/issues/52 .Ok, PR in https://github.com/tahoe-lafs/tahoe-lafs/pull/137 , ready for review. This will fix the immediate problem, but there will probably be others (including ones we can't fix because they're in Nevow or other libraries). I'll work on setting up a buildslave that will run tests with
PYTHONWARNINGS=default::DeprecationWarning
so we can at least see where they're happening.#2366 created to remind me about the warnings-scanning buildbot tool
[6f74282688a871c5ef8cb0d472b2050edc8e6102/trunk] has the patch but it does not seem to have fixed the warnings: https://travis-ci.org/tahoe-lafs/tahoe-lafs/jobs/47869702
removing
review-needed
tag (which by the way was incorrectly spelledneeds-review
)The next step is: figure out why the patch didn't fix the issue?
I suspect the remaining warnings are resulting from Nevow's
addSlash=True
problem. I don't think we can fix that within Tahoe, but I could be wrong.I think we've gotten as much out of this ticket as we can for 1.10.1 . I propose we bump it to 1.11 at this week's triage.
If we can't fix it, should we suppress the warning? We have done so for previous warnings that could only be fixed in dependencies.
let's make sure that this has been reported upstream to Nevow, if possible
Nevow bug filed: https://github.com/twisted/nevow/issues/52 . (oh, as I reported earlier in comment:95954, nevermind).
Buildbot is now scanning for deprecation warnings, https://tahoe-lafs.org/buildbot-tahoe-lafs/builders/Ubuntu%20trusty%2014.04/builds/45/steps/deprecations/logs/warnings has a list. This is a simple regexp scan, so some of the lines are coming from the tests that fail (due to stderr not being as quiet as it's supposed to be):
So there are three real warnings:
The first is filed as https://github.com/twisted/nevow/issues/53 , and the second as https://github.com/twisted/nevow/issues/52 . I don't know if the third is filed anywhere.
All the bugs (that might ever get fixed) are filed, a separate ticket will track the creation of a buildbot to look for more. I think this ticket is done.