Philipp Saveliev
Philipp Saveliev
Each time I open ec2instances.info (quite regularly), I have to enable and disable the same set of columns. Would be great if one could save the columns somehow, e.g. via...
How does raven-go handle Sentry server unavailability? I've got an impression that it doesn't at all. ``` //there is no server on localhost so I'm expecting just "connection refused" situation...
The problem: our Aerospike workload has become quite complex and unpredictable, so we need some advanced detailed metrics for analysis of performance problems (which do occur, sometimes with disastrous effect)....
As with `RAID_LAYOUT`, it's desirable to be able to specify `--chunk` too. I even think it would be good to have an arbitrary "extra args" field that can be passed...
### Relevant telegraf.conf: ```toml [[inputs.cpu]] percpu = true report_active = true ``` ### System info: * Telegraf - master * Linux ### Steps to reproduce: 1. `telegraf --input-filter cpu --test`...
First of all - I don't need Java bindings, is there a way to disable building it? I've looked through cmake files and haven't noticed any related flags. Anyway, build...
* Pip version: 7.1.2 (tested with 9.0.1 with the same result) * Python version: 2.7.6 * Operating System: Ubuntu 14.04 ### Description: We have a big requirements file and use...
Usage of null_renderer like this: ``` python from pyramid.renderers import null_renderer @view_config(route_name='test', renderer=null_renderer) def test (request): def no_response (_environ, _start_response): return [] return no_response ``` causes exception: ``` python ......
`sentinel.NewClientCustom` uses hardcoded `redis.Dial` at the beginning. Shouldn't it use the same passed `df DialFunc` instead? So one could pass a DialTimeout wrapper.
I have found out that `asyncio.get_event_loop()` is deprecated, upgraded to Python 3.12 (`asyncssh==2.14.2`) and switched to the `asyncio.Runner`. `asyncio.run` roughly just calls `asyncio.Runner`. When I run e.g. `asyncio.run(asyncssh.connect(host))`, it raises:...