From f45e3d6cf310510d47de8f23bd7393b9aa4afed3 Mon Sep 17 00:00:00 2001 From: Brian Thomas Smith Date: Mon, 15 Feb 2021 19:36:57 +0100 Subject: [PATCH] chore: typo fix (#811) --- core/src/main/java/io/questdb/PropServerConfiguration.java | 2 +- core/src/main/resources/io/questdb/site/conf/server.conf | 2 +- core/src/test/resources/server.conf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/main/java/io/questdb/PropServerConfiguration.java b/core/src/main/java/io/questdb/PropServerConfiguration.java index f8903d08f..61d2306ac 100644 --- a/core/src/main/java/io/questdb/PropServerConfiguration.java +++ b/core/src/main/java/io/questdb/PropServerConfiguration.java @@ -373,7 +373,7 @@ public class PropServerConfiguration implements ServerConfiguration { this.keepAliveHeader = null; } - final String publicDirectory = getString(properties, env, "http.static.pubic.directory", "public"); + final String publicDirectory = getString(properties, env, "http.static.public.directory", "public"); // translate public directory into absolute path // this will generate some garbage, but this is ok - we just doing this once on startup if (new File(publicDirectory).isAbsolute()) { diff --git a/core/src/main/resources/io/questdb/site/conf/server.conf b/core/src/main/resources/io/questdb/site/conf/server.conf index c1260619b..61a4407ea 100644 --- a/core/src/main/resources/io/questdb/site/conf/server.conf +++ b/core/src/main/resources/io/questdb/site/conf/server.conf @@ -62,7 +62,7 @@ #http.keep-alive.timeout=5 #http.keep-alive.max=10000 -#http.static.pubic.directory=public +#http.static.public.directory=public #http.net.active.connection.limit=256 #http.net.event.capacity=1024 #http.net.io.queue.capacity=1024 diff --git a/core/src/test/resources/server.conf b/core/src/test/resources/server.conf index 7aafbd335..5cdb8f339 100644 --- a/core/src/test/resources/server.conf +++ b/core/src/test/resources/server.conf @@ -11,7 +11,7 @@ http.worker.haltOnError=true http.allow.deflate.before.send=true http.send.buffer.size=128 http.static.index.file.name=index2.html -http.static.pubic.directory=public_ok +http.static.public.directory=public_ok http.net.active.connection.limit=64 http.net.event.capacity=2048 http.net.io.queue.capacity=64 -- GitLab