Skip to content

Commit

Permalink
Merge branch 'release/v1.7.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
zedshaw committed Jun 22, 2011
2 parents 4303ebc + 4af30ad commit 48184cb
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -32,9 +32,9 @@ Features
Download
--------

Mongrel2 is now 1.7.4 as of *Tue Jun 21 09:16:15 PDT 2011*:
Mongrel2 is now 1.7.5 as of *Wed Jun 22 09:23:16 PDT 2011*:

* [mongrel2-1.7.4.tar.bz2](http://mongrel2.org/static/downloads/mongrel2-1.7.4.tar.bz2) MD5: a01d1cab2132b44a01837f254ecfb296
* [mongrel2-1.7.5.tar.bz2](http://mongrel2.org/static/downloads/mongrel2-1.7.5.tar.bz2) MD5:

Documentation
-------------
Expand Down
4 changes: 2 additions & 2 deletions docs/wiki/mongrel2.wiki
Expand Up @@ -28,10 +28,10 @@ technologies. <img src="http://mongrel2.org/static/logo.png" align="right"></p>

<h2><a name="download">Download</a></h2>

<p>Mongrel2 is now 1.7.4:</p>
<p>Mongrel2 is now 1.7.5:</p>

<ul>
<li><a href="/static/downloads/mongrel2-1.7.4.tar.bz2">mongrel2-1.7.4.tar.bz2</a></li>
<li><a href="/static/downloads/mongrel2-1.7.5.tar.bz2">mongrel2-1.7.5.tar.bz2</a></li>
</ul>


Expand Down
2 changes: 1 addition & 1 deletion examples/python/mongrel2/config/commands.py
Expand Up @@ -502,7 +502,7 @@ def version_command():
Prints out the version of your mongrel2 binary."
"""

print "Mongrel2/1.7.4"
print "Mongrel2/1.7.5"



Expand Down
2 changes: 1 addition & 1 deletion examples/python/setup.py
Expand Up @@ -10,7 +10,7 @@
'url': 'http://pypi.python.org/pypi/mongrel2-python',
'download_url': 'http://pypi.python.org/pypi/mongrel2-python',
'author_email': 'zedshaw@zedshaw.com',
'version': '1.7.4',
'version': '1.7.5',
'install_requires': ['nose', 'simplejson', 'pyrepl', 'storm'],
'packages': ['mongrel2', 'mongrel2.config'],
'package_data': {'mongrel2': ['sql/config.sql']},
Expand Down
2 changes: 1 addition & 1 deletion src/io.c
Expand Up @@ -441,7 +441,7 @@ char *IOBuf_read_all(IOBuf *buf, int len, int retries)
debug("ATTEMPTS: %d, RETRIES: %d", attempts, retries);

if(attempts > retries) {
log_err("Read of %d length attempted %d times which is over %d retry limit..", len, attempts, retries);
log_warn("Read of %d length attempted %d times which is over %d retry limit..", len, attempts, retries);
}

check(IOBuf_read_commit(buf, len) != -1, "Final commit failed of read_all.");
Expand Down
2 changes: 1 addition & 1 deletion src/upload.c
Expand Up @@ -125,7 +125,7 @@ int Upload_file(Connection *conn, Handler *handler, int content_len)
return 0;

error:
bdestroy(result);
if(result) bdestroy(result);
fdclose(tmpfd);

if(tmp_name != NULL) {
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
@@ -1,3 +1,3 @@
#define VERSION "Mongrel2/1.7.4"
#define VERSION "Mongrel2/1.7.5"


0 comments on commit 48184cb

Please sign in to comment.