summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorHarald Musum <musum@oath.com>2018-11-09 11:32:37 +0100
committerHarald Musum <musum@oath.com>2018-11-09 11:32:37 +0100
commit7924db9a0c913ffc8c67e8d505d913a139cecee2 (patch)
treeab6da3f4589701c5831676b6300795b3bc388f39 /config
parenta9d8f3fcbb5e348ef1e91aefd7bd5caf4356e533 (diff)
Remove unused def files
Diffstat (limited to 'config')
-rw-r--r--config/src/test/java/com/yahoo/vespa/config/classes/qr-logging.def33
-rw-r--r--config/src/test/resources/configs/def-files/chains-test.def42
-rw-r--r--config/src/test/resources/configs/def-files/md5test.def25
-rw-r--r--config/src/test/resources/configs/def-files/standard.def8
4 files changed, 0 insertions, 108 deletions
diff --git a/config/src/test/java/com/yahoo/vespa/config/classes/qr-logging.def b/config/src/test/java/com/yahoo/vespa/config/classes/qr-logging.def
deleted file mode 100644
index 3fcab08a63b..00000000000
--- a/config/src/test/java/com/yahoo/vespa/config/classes/qr-logging.def
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-logger string default="com.yahoo"
-# Either QueryAccessLog for a regular Vespa access log, or YApacheAccessLog for a log on yApache format
-speciallog[].name string
-
-# Leave as ""
-speciallog[].type string
-
-speciallog[].filehandler.name string default=""
-
-# File name patterns supporting the expected time variables
-speciallog[].filehandler.pattern string default=".%Y%m%d%H%M%S"
-
-speciallog[].filehandler.rotation string default="0 60 ..."
-
-# Defines how file rotation is done. There are two options:
-#
-# "date" :
-# The active log file is given the name resulting from pattern (but in this case "pattern" must yield a
-# time-dependent name. In addition, a symlink is created pointing to the newest file.
-# The symlink is given the name of the symlink parameter (or the name of this service
-# if no parameter is given.
-#
-# "sequence" :
-# The active log file is given the name
-# defined by "pattern" (which in this case will likely just be a constant string).
-# At rotation, this file is given the name pattern.N where N is 1 + the largest integer found by
-# extracting the integers from all files ending by .Integer in the same directory
-#
-speciallog[].filehandler.rotatescheme string default="date"
-
-speciallog[].cachehandler.name string default=""
-speciallog[].cachehandler.size int default=1000
diff --git a/config/src/test/resources/configs/def-files/chains-test.def b/config/src/test/resources/configs/def-files/chains-test.def
deleted file mode 100644
index b7da79931d5..00000000000
--- a/config/src/test/resources/configs/def-files/chains-test.def
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-# Chains configuration
-namespace=foo
-
-component[].id string
-
-# Configured functionality provided by this - comes in addition to those set in the code
-component[].dependencies.provides[] string
-
-# Configured "before" dependencies provided by this - comes in addition to those set in the code
-component[].dependencies.before[] string
-
-# Configured "after" dependencies provided by this - comes in addition to those set in the code
-component[].dependencies.after[] string
-
-# The id of this chain. The id has the form name(:version)?
-# where the version has the form 1(.2(.3(.identifier)?)?)?.
-# The default chain must be called "default".
-chain[].id string
-
-#The type of this chain
-chain[].type enum {DOCPROC, SEARCH} default=SEARCH
-
-# The id of a component to include in this chain.
-# The id has the form fullclassname(:version)?
-# where the version has the form 1(.2(.3(.identifier)?)?)?.
-chain[].component[] string
-
-# The optional list of chain ids this inherits.
-# The ids has the form name(:version)?
-# where the version has the form 1(.2(.3(.identifier)?)?)?.
-# If the version is not specified the newest version is used.
-chain[].inherit[] string
-
-# The optional list of component ids to exclude from this chain even if they exists in inherited chains
-# If versions are specified in these ids, they are ignored.
-chain[].exclude[] string
-
-# The phases for a chain
-chain[].phase[].id string
-chain[].phase[].before[] string
-chain[].phase[].after[] string
diff --git a/config/src/test/resources/configs/def-files/md5test.def b/config/src/test/resources/configs/def-files/md5test.def
deleted file mode 100644
index da79d022648..00000000000
--- a/config/src/test/resources/configs/def-files/md5test.def
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-namespace=foo
-
-# Added empty line to see if we can confuse
-# the server's md5 calculation
-
-#even adding a variable name starting with 'version'
-versiontag int default=3
-
-blabla string default=""
-tabs string default=" "
-test int
-
-# test multiple spaces/tabs
-spaces int
-singletab string
-multitabs double
-
-# test enum
-normal enum { VAL1, VAL2 } default=VAL1
-spacevalues enum { V1 , V2 , V3 , V4 } default=V3
-
-# Comments and empty lines at the end
-
-
diff --git a/config/src/test/resources/configs/def-files/standard.def b/config/src/test/resources/configs/def-files/standard.def
deleted file mode 100644
index f4c6ced1e00..00000000000
--- a/config/src/test/resources/configs/def-files/standard.def
+++ /dev/null
@@ -1,8 +0,0 @@
-# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-# Config containing only simple leaf types with default values, that can be used
-# for testing individual types in detail.
-namespace=foo
-
-basicStruct.intVal int default=0
-basicStruct.stringVal string default="s"
-stringArr[] string