atomsnc
atomsnc
Won't the `zone` directive present in upstream module do the job here? http://nginx.org/en/docs/http/ngx_http_upstream_module.html#zone If you check the function `ngx_http_upstream_zone_copy_peers` in **ngx_http_upstream_zone_module.c**, in the end it sets pointer of peers in...
Looks like shared memory pool has **init** after the modules configuration init where upstream module called upstream_init. So the pointers copied by jdomain won't be the shared ones.
I think easiest way would be to create a new status state **INIT** and assign that to jdomains that have variable `defer` set. Skip `ngx_parse_url` part on those during configuration...
This issue comes due to flag issue with pcre_compile and pcre_exec. `%0d%0a` becomes `/r/n` when un-escaped. Newlines are not matched by pcre_exec. Hence you see start_offset stuck at 13. `PCRE_DOTALL`...
Hello, There seems to be an issue in this PR where a string like `char s[] = "{\"array\":[1,2]}";` fails, when an array is inside an object. It can be fixed...
@themobiusproject I feel like a worthwhile addition would be to have a coalesce strategy in the `utils` for open tokens when the tokens array cannot be large. For tokens which...
@themobiusproject When the tokens array for storing tokens while parsing cannot be too big (especially in embedded devices). In that case when the array gets full, user can evict a...