Anton Parkhomenko

Results 163 issues of Anton Parkhomenko

`s3_connection.get_bucket` crashes with `S3ResponseError: 400 Bad Request` whenever bucket from eu-west-2 passed to it.

Pre-roadmap

To facilitate stress-testing for trackers we can add modules providing boilerplate code for each tracker allowing us to: * check how long does it take to send big queue of...

Pre-roadmap

This would probably complicate our current release-process, but still can be considered as a good security practice.

Non-roadmap

Maybe I'm missing something, but it looks like for trackers supporting multiple emitters it is impossible to track down what emitter (collector URI + emitter class) was used to send...

Pre-roadmap

Default `EntityEncoder` for `Stream[F, A]` works that all `A`s are streamed as invalid JSON: ``` {"name": "Bob"}{"name": "Fred"} ``` instead of ``` [{"name": "Bob"},{"name": "Fred"}] ``` I believe that this...

breaking
module:core

I have this test case: ```json { "description": "multiple types can be specified in an array with null", "schema": {"type": ["array", "null"], "items": {"type": "string"}}, "tests": [ { "description": "a...

bug
help wanted

Hello there! This is both a question and a proposal (although duplicate of https://github.com/networknt/json-schema-validator/issues/58). I'm assuming `json-schema-validator` would not produce `ValidationMessage`s with `path` properties following the most exotic JSONPath features...

`sc.distCache` can be used to download some files and distribute them across workers. However, currently it can be done only once when `DistCache.apply()` is called. I need to update local...

question ❓
streaming

I use pypi2nix to generate a docker image from another docker container, built on top of `nixos/nix` image, which doesn't have `git` installed by default. Here's the command that I...

Given a following form: ```html Login ``` It must be quite common to do [`e.preventDefault()`](https://developer.mozilla.org/en-US/docs/Web/API/Event/preventDefault) as first thing in `submit` callback, because otherwise clicking on the button makes the browser...

workaround