Opened 12 years ago

Closed 12 years ago

Last modified 12 years ago

#17993 closed Cleanup/optimization (fixed)

error in uWSGI example ini file

Reported by: roberto@… Owned by: nobody
Component: Documentation Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

The provided example ini file uses the quoted form for the 'module' directive:

module='mysite.wsgi:application'

This syntax is not supported on older uWSGI releases and could lead to errorsFor being version independent
it should be:

module=mysite.wsgi:application

Change History (3)

comment:1 by Preston Holmes, 12 years ago

Easy pickings: set
Has patch: unset
Triage Stage: UnreviewedAccepted
Type: UncategorizedCleanup/optimization
Version: 1.4SVN

comment:2 by Claude Paroz, 12 years ago

Resolution: fixed
Status: newclosed

In [17813]:

Fixed #17993 -- Removed quotes around module parameter for wider compatibility. Thanks roberto@… for the report.

comment:3 by Claude Paroz, 12 years ago

In [17821]:

[1.4.X] Fixed #17993 -- Removed quotes around module parameter for wider compatibility. Thanks roberto@… for the report.

Backport of r17813 from trunk.

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