Skip to content

Commit

Permalink
Cosmit
Browse files Browse the repository at this point in the history
  • Loading branch information
bdelbosc committed Dec 6, 2011
1 parent d734f37 commit cf997cb
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
16 changes: 12 additions & 4 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,23 @@ FunkLoad GIT master
New Features
~~~~~~~~~~~~~~

* Display the description in the URL when rendering the page in
Firefox (-V option)

* GH-41: Allow fl-run-bench to take modules in addition to filenames
(joeshwaw)::

fl-run-bench project.submodule.loadtests MyTestCase.test_something

* Support for gzip compression, you need to add the standard header::

self.setHeader('Accept-encoding', 'gzip')
response = self.get(...)

Then the `response.body` will be uncompressed when needed.

* Experimental comet request support, handle stream request in a separate
thread, the server input is send to a consumer method::
* Experimental comet request support, handle stream request in a
separate thread, the server input is send to a consumer method::

# async request
thread = self.comet(server_url + "/comet?t=1234&c=1",
Expand All @@ -41,8 +49,8 @@ New Features
self.stop_consumer = True
thread.join()

The consumer get the server input character by character and stop the
can stop the connection by returning 0 value::
The consumer get the server input character by character and can
stop the the connection by returning 0 value::

def consumer(self, string):
trace(string)
Expand Down
5 changes: 5 additions & 0 deletions INSTALL.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ installed this way::

sudo aptitude install python-webunit funkload

Installing on Mac
--------------------

See http://pyfunc.blogspot.com/2011/12/installing-funkload-on-mac.html.


Other OS
----------
Expand Down
1 change: 1 addition & 0 deletions THANKS
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ Andrew McFague: Specify a custom Python binary configuration option for
distributed nodes, pep8 fixes for the funkload.Distributed module.
Thibault Soulcié: logo.
Benito Jorge Bastida: Misc bug fixes.
Joe Shaw: Allow fl-run-bench to take modules in addition to filenames.
1 change: 1 addition & 0 deletions doc/source/links.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ Links

* Apdex with FunkLoad (in french) http://www.wikigento.com/tag/funkload/

* Installing FunkLoad on Mac http://pyfunc.blogspot.com/2011/12/installing-funkload-on-mac.html

0 comments on commit cf997cb

Please sign in to comment.