Skip to content

Commit

Permalink
bugfix: fixed an incorrect error message. thanks aviramc for the patc…
Browse files Browse the repository at this point in the history
…h in #290.
  • Loading branch information
agentzh committed Jul 10, 2014
1 parent 4969b87 commit f83fa0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ngx_http_lua_socket_tcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1026,7 +1026,7 @@ ngx_http_lua_socket_resolve_retval_handler(ngx_http_request_t *r,
ngx_http_lua_socket_handle_conn_error(r, u,
NGX_HTTP_LUA_SOCKET_FT_ERROR);
lua_pushnil(L);
lua_pushliteral(L, "failed to handle write event");
lua_pushliteral(L, "failed to handle read event");
return 2;
}

Expand Down

0 comments on commit f83fa0d

Please sign in to comment.