Skip to content

Commit

Permalink
Fix nginx.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
slvrtrn committed Oct 17, 2023
1 parent 6466879 commit deec0a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .docker/nginx/local.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ upstream clickhouse_cluster {

server {
listen 8123;
client_max_body_size 100M;
location / {
proxy_pass http://clickhouse_cluster;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ describe('[Node.js] streaming e2e', () => {
it('should work with .json()', async () => {
const { table, values } = await generateData({
rows: 5,
words: 5000,
words: 10000,
})
const result = await client
.query({
Expand All @@ -166,7 +166,7 @@ describe('[Node.js] streaming e2e', () => {
it('should work with .stream()', async () => {
const { table, values } = await generateData({
rows: 5,
words: 5000,
words: 10000,
})
const stream = await client
.query({
Expand Down

0 comments on commit deec0a4

Please sign in to comment.