🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

github.com/Felixoid/ch-forms-issue

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
c

github.com/Felixoid/ch-forms-issue

v0.0.0-20210401113919-912c72f1bd91
Version published
Created
Issues
0

Issue reproduction

This repo is related to ClickHouse issues:

# run docker in one console
docker run --rm --net=host --name=clickhouse -v $(pwd)/schemes:/docker-entrypoint-initdb.d -v $(pwd)/configs/:/etc/clickhouse-server/config.d yandex/clickhouse-server:21.3.4

# Make requests from another
# works
go run .
# All following with TLS/SSL if another is not mentioned
# works: auth
go run . -url "https://default@localhost:8443/" -lines 1
# works: auth+agent
go run . -url "https://default@localhost:8443/" -lines 1 -agent
# works: agent+cancel_http_readonly_queries_on_client_close
go run . -url "https://localhost:8443/?cancel_http_readonly_queries_on_client_close=1" -lines 1 -agent
# works: agent+cancel_http_readonly_queries_on_client_close+http
go run . -url "http://default@localhost:8123/?cancel_http_readonly_queries_on_client_close=1" -lines 1 -agent
# broken: agent + cancel_http_readonly_queries_on_client_close + HTTPS + auth
go run . -url "https://default@localhost:8443/?cancel_http_readonly_queries_on_client_close=1" -lines 1 -agent

It works with yandex/clickhouse-server:20.8 image.

FAQs

Package last updated on 01 Apr 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts