Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

Commit

Permalink
Compatability with recent tornado versions
Browse files Browse the repository at this point in the history
Removed the last traces of keyword arguments to
tornado.http.AsyncHTTPClient().
  • Loading branch information
Micha Gorelick committed Sep 12, 2012
1 parent 897ffd6 commit 1a14a25
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pysimplehttp/src/__init__.py
@@ -1,4 +1,4 @@
__version__ = "0.2.0"
__version__ = "0.2.1"

import file_to_simplequeue
import pubsub_reader
Expand Down
2 changes: 1 addition & 1 deletion pysimplehttp/src/file_to_simplequeue.py
Expand Up @@ -11,7 +11,7 @@
import json

class FileToSimplequeue(object):
http = tornado.httpclient.AsyncHTTPClient(max_simultaneous_connections=50, max_clients=50)
http = tornado.httpclient.AsyncHTTPClient()
def __init__(self, input_file, max_concurrent, max_queue_depth, simplequeue_urls,
check_simplequeue_interval, stats_interval, filter_require=None, filter_exclude=None, io_loop=None):
assert isinstance(simplequeue_urls, (list, tuple))
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -8,7 +8,7 @@
# upload .tar.gz to github
# run python setup.py register to update pypi

__version__ = "0.2.0"
__version__ = "0.2.1"
scripts = ['pysimplehttp/scripts/ps_to_sq.py',
'pysimplehttp/scripts/file_to_sq.py']

Expand Down

0 comments on commit 1a14a25

Please sign in to comment.