We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello, I've noticed that this part of code breaks nginx tests
#if (NGX_SSL) static ngx_int_t ngx_http_graphite_ssl_session_reused(ngx_http_request_t *r, ngx_http_variable_value_t *v, uintptr_t data) { ngx_str_t s; if (r->connection->requests == 1) { if (r->connection->ssl && SSL_session_reused(r->connection->ssl->connection)) { ngx_str_set(&s, "yes"); } else { ngx_str_set(&s, "no"); } } else { ngx_str_set(&s, "none"); }
This is because nginx have the same variable $ssl_session_reused, but it has values 'r'/'.' instead of 'yes'/'no'.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I've noticed that this part of code breaks nginx tests
This is because nginx have the same variable $ssl_session_reused, but it has values 'r'/'.' instead of 'yes'/'no'.
The text was updated successfully, but these errors were encountered: