Sergey Ponomarev

Results 230 comments of Sergey Ponomarev

The full log looks like: ``` $ make Step 1/3 : FROM ubuntu:18.04 ---> 4e5021d210f6 Step 2/3 : RUN echo ========== Install dependencies ========== && apt-get update && apt-get install...

Also as a side note: in the Build/Makefile:45 looks like: ``` OPENSSL_PATH = $(firstword $(wildcard /usr/local/Cellar/[email protected]/*)) MBEDTLS_PATH = $(firstword $(wildcard /usr/include/mbedtls) $(wildcard /usr/local/Cellar/mbedtls/*)) ``` Must be changed to ``` OPENSSL_PATH...

I created a PR. Honestly I don't see benefits of having this configurable. In theory, that may lead to problem when someone tested an API endpoint with the OPTIONS covered...

The only valid way is to fix api and check for api method

Can we do something to force the HTTP method checking?

I recently switched to Go and when I first time saw the HTTP handler API my first thought was "hey, here is not forced to check a method like in...

Hi, if you need my assistance I may try to contribute a little bit and fix parts. I can spent about 4-5 hours, just let me know where to change

BTW in MySQL mode can I skip the RESTART IDENTITY part? In MySQL and MariaDB as far I know this is by default

Also as a side note: can we have a function to truncate all tables? With ability to ignore some tables (like COUNTRIES with static data). This is very useful for...

> > can we have a function to truncate all tables? > > Do you know a database that has such feature? No, but this is quite popular request for...