stop putting pkg_resources.require() into .tac files #1539
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#1539
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?
Per comment:79165:
One thing that we can do right away to ease this is change create-node to stop putting the call to pkg_resources.require() in the tahoe-client.tac.
Agreed.
There are two calls to
pkg_resources.require()
in the .tac files that we currently produce. According to changeset:1aed9fcfa1c45538 the patch that added them, this was necessary to make them importable if they were installed in setuptools's "multiversion mode". I don't think we need to support that. We experimented with it (see #530) and removing multiversion mode from our setup.py did not break any of our unit tests, not even test-with-fake-pkg or test-with-fake-dists.Replying to zooko:
Those calls should never have been necessary even for multiversion mode; I think the commit comment was wrong.
pkg_resources.require()
does not, despite the misleading name and documentation, make a package available that wouldn't already have been available. The set of packages available in the working set is determined at the point of first importingpkg_resources
, which happens in the setuptools-generated support script, long before the .tac is executed.So I guess I'm violently agreeing with your conclusion that these calls aren't necessary ;-)
Attachment 1539-smaller-tac.diff (1122 bytes) added
remove pkg_resources calls from generated .tac files
something like that?
Will review.
Note that
import pkg_resources
has side effects onsys.path
even ifpkg_resources.require()
is not used; so, removing the import might have an additional effect. I can't immediately remember whether that's desirable or not; need to page this stuff back into my brain.According to changeset:1aed9fcfa1c45538, I added that so that it would find an allmydata and twisted package tht had been installed in "multi-version mode". I guess that mode of install offered by setuptools doesn't put the installed egg into the sys.path at all until a
pkg_resources.require()
with a matching version number has been invoked. We experimented with it at one point as a way to work around other problems, but I believe we gave up on using it.Obsolete if we accept #1159.
I want this, but won't block 1.10 for it. Kicking it and its cousin #1159 into 1.11.
I'll be doing the review on this one.
I would prefer to keep the
pkg_resources
import just because:pkg_resources
can changesys.path
, which can change whereallmydata
is imported from.If the
.tac
file is run viatahoe start
ortahoe run
, thenpkg_resources
will already have been imported and therefore importing it again will have no effect -- but this is dependent on the current implementation oftahoe start
/run
. If the.tac
were run directly viatwistd
or another Python application, then this could have an effect. It is never correct to importallmydata
and then have thesys.path
change as a result of importingpkg_resources
, so it is safer to import it first. (When we switch to not using the contents of the.tac
files, it won't matter either way, but we're not doing that yet.)Review of 1539-smaller-tac.diff:
Everything is great except that it breaks the following test: allmydata.test.test_drop_upload.RealTest.test_drop_upload . The patch should be changed so that no test is broken.
daira has an objection to this change so I'm not sure who I should reassign this to.
I will review this together with #1159.
This is wontfix because we decided to stop using the contents of
.tac
files instead (#1159, fixed in changeset:87a6894e6299148d639279fbd909110ba00d0080).