bug in error path of cross_check_pkg_resources_versus_import #1355
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#1355
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?
Jimmy Tang wrote to the mailing list with a crash on his Archlinux box.
I don't know if this is a real error path, or if it's just accumulating a bunch of warnings to print to stderr (i.e. if we just took out the offending line, would the program work anyways, or is the missing/old/unable-to-compute-version dependency actually important?).
This sort of problem reinforces my feeling that our
*init*.py
is way too complex, and that all the version-checking logic may be doing more harm than good.This may provoke a 1.8.3, if it happens frequently enough. If the bad
e.*class*.name
is only triggered under weird combinations of installed dependencies, then we might be able to put it off until 1.9.0 .warner wrote in the original Description:
It should have been
e.*class*.*name*
. Sorry, my fault for not testing this error path adequately. It's not at all Python 2.7-specific.(For future reference: the Description field isn't the right place to speculate about the cause of a bug.)
This error occurs on lines 287 and 301 of [init.py]source:src/allmydata/init.py@4994#L279. It happens when:
--version
or--version-and-path
option tobin/tahoe
is used, and--version-and-path
is passed tobin/tahoe
by default when you run tests [source:setup.py@4997#L258 via setup.py]. You can use the--quiet
option (i.e.setup.py test --quiet
orsetup.py trial --quiet
) to suppress this.We don't know whether the warning was indicative of a real error in this case, because we don't know what the version or package was. The best way to check that would be for Jimmy Tang to replace
.name
with.__name__
on lines 287 and 301 of__init__.py
and then see what is printed.It's not clear to me how common it is to have versions that
verlib.py
will raise an exception when trying to parse.py2.7 incompatibility in cross_check_pkg_resources_versus_import?to bug in error path of cross_check_pkg_resources_versus_importReplying to davidsarah:
Oops,
cross_check_pkg_resources_versus_import
is also called by [get_package_versions_string]source:src/allmydata/init.py@4994#L378, which is used [when constructing a storage client or introducer node]source:src/allmydata/node.py@4852#L4775. This will prevent running nodes whenever the second condition above holds.This situation is not happening on any of the buildbots, so it can't be very common. However I think it still requires a 1.8.3 :-(
I think this is so rare that it doesn't require 1.8.3.
It is quite rare for one of our deps to have a version number that can't be parsed by verlib.py.
Attachment test-1355.darcs.patch (6439 bytes) added
Add unit tests for cross_check_pkg_resources_versus_import, and a regression test for ref #1355. This requires a little refactoring to make it testable.
Attachment fix-1355.darcs.patch (6305 bytes) added
allmydata/init.py: .name was used in place of the correct .name when printing an exception. Also, robustify string formatting by using %r instead of %s in some places. fixes #1355.
In changeset:71c301ca3444f41e:
The test patch was applied as changeset:787d12165af49a4a (trac didn't auto-comment for some reason).