Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove flup6 and deprecated deployment methods #84

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 0 additions & 42 deletions filetracker/servers/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,48 +86,6 @@ def get_endpoint_and_path(environ):
return components[0], '/'.join(components[1:])


# Deprecated, run.py should be used in all cases.
def start_cgi(server):
from flup.server.cgi import WSGIServer

WSGIServer(server).run()
sys.exit(0)


# Deprecated, run.py should be used in all cases.
def start_fcgi(server):
from flup.server.fcgi import WSGIServer

WSGIServer(server).run()
sys.exit(0)


# Deprecated, run.py should be used in all cases.
def start_standalone(server, port=8000):
from wsgiref.simple_server import make_server

httpd = make_server('', port, server)
print("Serving on port %d..." % port)
httpd.serve_forever()


def main(server):
"""A convenience ``main`` method for running WSGI-compatible HTTP
application as CGI, FCGI or standalone (with auto-detection)."""

if 'REQUEST_METHOD' in os.environ:
start_cgi(server)

stdin_sock = socket.fromfd(0, socket.AF_UNIX, socket.SOCK_STREAM)
try:
stdin_sock.getpeername()
except socket.error as e:
if e.errno == errno.ENOTCONN:
start_fcgi(server)

start_standalone(server)


def _rindex(l, value):
"""Same as str.rindex, but for lists."""
return len(l) - l[::-1].index(value) - 1
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ classifiers = [
]
dependencies = [
"bsddb3==6.2.7",
"flup6",
"gunicorn==19.9.0",
"progressbar2",
"requests",
Expand All @@ -48,4 +47,4 @@ filetracker = "filetracker.client.shell:main"
filetracker-server = "filetracker.servers.run:main"
filetracker-cache-cleaner = "filetracker.scripts.cachecleaner:main"
filetracker-migrate = "filetracker.scripts.migrate:main"
filetracker-recover = "filetracker.scripts.recover:main"
filetracker-recover = "filetracker.scripts.recover:main"