Opened 16 years ago

Closed 16 years ago

Last modified 13 years ago

#8242 closed (fixed)

INSTALLED_APPS with "foo.*" not populated consistently

Reported by: Jeremy Dunck Owned by: Jacob
Component: Core (Other) Version: dev
Severity: Keywords:
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

On different filesystems, but using the same list of INSTALLED_APPS, the final populated list of INSTALLED_APPS can vary.

os.listdir's return list is arbitrary, so that the apps are loaded differently.

The most obvious display of this issue is where foo.* apps are listed in the admin index. However, applications might also expect to be initialized in a stable order, and Django's globbing currently fails at that.

I think simply sorting the results of listdir would address this.
Obviously, providing consistent tests for this is difficult, but I have observed it in the wild.

Attachments (1)

INSTALLED_APPS-order.diff (783 bytes ) - added by Jeremy Dunck 16 years ago.

Download all attachments as: .zip

Change History (4)

by Jeremy Dunck, 16 years ago

Attachment: INSTALLED_APPS-order.diff added

comment:1 by Jacob, 16 years ago

milestone: post-1.01.0
Owner: changed from nobody to Jacob
Status: newassigned
Triage Stage: UnreviewedAccepted

comment:2 by Jacob, 16 years ago

Resolution: fixed
Status: assignedclosed

(In [8538]) Fixed #8242: handle foo.* consistantly in INSTALLED_APPS.

comment:3 by Jacob, 13 years ago

milestone: 1.0

Milestone 1.0 deleted

Note: See TracTickets for help on using tickets.
Back to Top