summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2023-01-09 16:42:35 +0100
committergjoranv <gv@verizonmedia.com>2023-01-09 16:44:17 +0100
commit742eea446c1238d1016e5e82db21693f663de3d4 (patch)
tree11e6c69e21a33d745a51e679cea300078d8c7e12
parentc0edc6ce979b73a42a334b0cb35b7af932f39870 (diff)
Use 'null' bundle instead of the invalid 'container-core'
- Worked by accident because of the class lookup in the container falls back to container-disc.
-rw-r--r--config-model/src/main/java/com/yahoo/vespa/model/container/component/AccessLogComponent.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/config-model/src/main/java/com/yahoo/vespa/model/container/component/AccessLogComponent.java b/config-model/src/main/java/com/yahoo/vespa/model/container/component/AccessLogComponent.java
index ffdb717afa8..c19973716de 100644
--- a/config-model/src/main/java/com/yahoo/vespa/model/container/component/AccessLogComponent.java
+++ b/config-model/src/main/java/com/yahoo/vespa/model/container/component/AccessLogComponent.java
@@ -64,7 +64,7 @@ public final class AccessLogComponent extends SimpleComponent implements AccessL
Integer queueSize,
Integer bufferSize)
{
- super(new ComponentModel(accessLogClass(logType), null, "container-core", null));
+ super(new ComponentModel(accessLogClass(logType), null, null, null));
this.fileNamePattern = Objects.requireNonNull(fileNamePattern, "File name pattern required when configuring access log");
this.rotationInterval = rotationInterval;
this.compression = compressOnRotation;