Коренберг Марк
Коренберг Марк
Because conflicts with --json (!)
See: http://tools.ietf.org/html/rfc2616#section-3.6.1 i.e.: part of my code in python, where I construct special crafted query. ``` query = '\r\n'.join([ b'POST /qwe.asd HTTP/1.1', b'Host: ' + TEST_HOST, b'Transfer-Encoding: chunked', b'Content-Encoding: gzip',...
It seems many tests are wrong, since use multiple `HTTP/1.0` answers without `connection: keep-alive` AFAIK, if request was `HTTP/1.1` (as in many tests) 1. `HTTP/1.1`-aware server should answer with `HTTP/1.1`...
I mean: https://github.com/mdn/browser-compat-data Another example: https://github.com/webhintio/hint I want browserlists to be able to query browsers by expressions like `supports mdn-javascript_builtins_promise_allsettled`. Unfortunately, current DB does not support such detailed requests.
I have fixed exactly the same bug in Python ( https://github.com/python/cpython/pull/5449/files ) So, when I pass, say, `ff02::1%eth0` as ipv6-address, Lua calls `getaddrinfo()` which in turn calls: ``` socket(AF_UNIX, SOCK_DGRAM|SOCK_CLOEXEC,...
Suppose such case: `/mnt/readonly_fs/some_symlink` -> `/var/real_file`. So, `atomic_write('/mnt/readonly_fs/some_symlink')` will try to create temporary file in `/mnt/readonly_fs/`. This is BUG. It should create temporary file in `/var` and replace `/var/real_file` accordingly....
http://stackoverflow.com/questions/3764822/how-to-durably-rename-a-file-in-posix So, you need to open directory where file exists (O_DIRECOTRY), and fsync() it's FD after rename. If not, application may think that rename is durable, but on accidental reboot,...
``` self_sign_pem_chain = await get_event_loop().run_in_executor( File "/usr/lib64/python3.9/concurrent/futures/thread.py", line 52, in run result = self.fn(*self.args, **self.kwargs) File "/usr/lib/python3.9/site-packages/ideco_crypto/cert.py", line 261, in get_selfgenerated_chain common_name = _normalize_domain(common_name, allow_underscore=allow_underscore) File "/usr/lib/python3.9/site-packages/ideco_crypto/cert.py", line 76, in...
1. they can not install python3-click 2. If I change everywhere python 3.5 to Python 3.6 - several tests fail. Also you use obsolete version of etcd in tests
Document watch callbacks are called from different thread. It's VERY important