Sergey

Results 10 comments of Sergey

@Sudip-star-a11y @nicolasbertaud Do you find solution?

> @sergorl Could you post the output of `which python` when you run it in an IntelliJ terminal window? (tool window terminal , usually found at the bottom of the...

@fedyfausto , what'are the values for `Gateway's IPv4` and `Gateway's Port`?

I change on `-H "Content-Type: application/json"` ```bash curl -X POST "https://openwisp.controller.io/api/v1/controller/device/8cb65d82-dfd8-4a36-94ca-206aec315494/command/" -H "Content-Type: application/json" -H "Authorization: Bearer "some token"" -H "X-CSRFToken: lhYJJWLgB53saQaOZXWMSxYSe38 pAghCHFivFYW9TuOpBGFi9ubE2s1OIfplDoGh" -d "{ \"input\": \"mkdir /test_openwisp\", \"connection\": \"ca39961c-d3ca-4e0a-892f-637d29468007\",...

`/opt/openwisp2/log/openwisp2.log`: ```bash File "/opt/openwisp2/env/lib/python3.8/site-packages/django/db/models/base.py", line 1405, in full_clean raise ValidationError(errors) django.core.exceptions.ValidationError: {'input': ['Enter valid JSON.', "'mkdir /test_openwisp' is not of type 'object'"]} ``` I fixed it by this `-d "{...

By the way, when blocksize is less than 4096 there is no echo.

@omega4github , I found only [this example of captcha generation from predefined symbols](https://github.com/daniel-e/captcha/blob/master/examples/build_captchas.rs): ```rust extern crate captcha; use captcha::filters::{Cow, Noise, Wave}; use captcha::{Captcha, Geometry}; use std::path::Path; fn main() { let...

@bnoordhuis , I don't uderstand you about `uv_thread_self()`... I made this code and It seems `uv_thread_self() `works properly and returns diffierent thread id from different threads: ```C #include #include #include...

So how can I create the thead per each incoming connection from client and process each connection in own thread?