Skip to content

Commit 90d9361

Browse files
mtopolnikclaude
andcommitted
Enable HTTP server in CI configs
The QWP WebSocket sender connects to QuestDB's HTTP port (9000) for the WebSocket upgrade at /write/v4. Both CI server configs had http.enabled=false, which prevented the HTTP listener from starting. PG wire tests (port 8812) were unaffected, but all QwpSenderTest cases failed with "Failed to connect to 127.0.0.1:9000". Set http.enabled=true in both default and authenticated configs. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent afc654f commit 90d9361

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

ci/confs/authenticated/server.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ config.validation.strict=true
4040
################ HTTP settings ##################
4141

4242
# enable HTTP server
43-
http.enabled=false
43+
http.enabled=true
4444

4545
# IP address and port of HTTP server
4646
#http.net.bind.to=0.0.0.0:9000

ci/confs/default/server.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ config.validation.strict=true
4040
################ HTTP settings ##################
4141

4242
# enable HTTP server
43-
http.enabled=false
43+
http.enabled=true
4444

4545
# IP address and port of HTTP server
4646
#http.net.bind.to=0.0.0.0:9000

0 commit comments

Comments
 (0)