aboutsummaryrefslogtreecommitdiffstats
path: root/config-lib
Commit message (Collapse)AuthorAgeFilesLines
* Safeguard against adding disk bundles to allowed duplicates.gjoranv2020-04-021-5/+7
| | | | | | | | | | This should not be necessary, because disk bundles should be removed by getObsoleteFileReferences (as long as they are present in both the old and new set of bundles). However, there was an incident where all the model amender's bundles were added to the set of allowed duplicates. One possible explanation is that FileReference.equals or hashCode was broken, so an improved version is added by this commit.
* Add a basic test for struct builders.gjoranv2019-10-112-0/+35
| | | | + Delete unused .def file
* Remove findbugs annotations from code and build path.gjoranv2019-09-091-8/+0
| | | | | - jsr305 is needed by guava, which declares it as optional dep. - Remaining modules with annotations do not affect the container.
* Remove use of Nullable and NotNull annotationsHarald Musum2019-08-2911-32/+11
| | | | | | Different implementations and using OSGi makes it really hard to use these annotations and the value of using them is IMHO not very high.
* Remove removed ctor in InnerNodeVector from abi spec.gjoranv2019-01-211-2/+1
|
* 6-SNAPSHOT -> 7-SNAPSHOTArnstein Ressem2019-01-211-2/+2
|
* Remove unused ctor in InnerNodeVectorgjoranv2019-01-211-5/+0
|
* Merge pull request #8051 from vespa-engine/bratseth/query-profile-fixesJon Bratseth2019-01-091-1/+1
|\ | | | | Include queryProfile as a regular parameter
| * Remove temporary lineJon Bratseth2019-01-081-1/+1
| |
* | Revert "Revert "Enable ABI checking on modules with public APIs""Ilpo Ruotsalainen2019-01-092-0/+501
|/ | | | This reverts commit cd470d8ac8a58c943748f028a37d864507628e99.
* Revert "Enable ABI checking on modules with public APIs"HÃ¥kon Hallingstad2019-01-042-501/+0
|
* Move abi-check-plugin configuration to parent.Ilpo Ruotsalainen2018-12-211-12/+0
| | | | | Instead of configuring in each module separately, put all configuration to parent and let the relevant modules just enable the plugin.
* Update ABI spec.Ilpo Ruotsalainen2018-12-181-2/+40
|
* Enable abi-check-plugin on relevant modules.Ilpo Ruotsalainen2018-12-182-0/+475
|
* Add url config typeLester Solbakken2018-12-188-4/+163
|
* Use full nameHarald Musum2018-10-038-8/+8
|
* Read fiel distribution file reference correctlyJon Bratseth2018-09-071-1/+0
|
* Merge with masterJon Bratseth2018-06-011-2/+3
|\
| * Delete /vespa/config from zookeeper, has not been used for many yearsHarald Musum2018-05-311-2/+1
| |
| * Require file reference to be non-nullHarald Musum2018-05-301-1/+3
| |
* | Separate internal redeploys from application package changesJon Bratseth2018-06-011-4/+7
|/ | | | | | | | | Separate system internal redeploys from application package changes such that we can ignore config updates originating from application package changes if restart on deploy is true, as the config change will be followed by a restart - but continue to effect config changes originating from internal system changes as those will not (and should not) be followed by a restart.
* Split parent + container-dependency-versions from root pom.gjoranv2017-12-011-0/+1
| | | | | | - Add missing dependencies so that all provided non-yahoo jars are listed in container-dependency-versions. - Add relativePath for all child poms of parent.
* Revert "Gjoranv/split parent2"gjoranv2017-11-301-1/+0
|
* Split parent + container-dependency-versions from root pom.gjoranv2017-11-301-0/+1
| | | | | | - Add missing dependencies so that all provided non-yahoo jars are listed in container-dependency-versions. - Add relativePath for all child poms of parent.
* Revert "Gjoranv/split parent"gjoranv2017-11-291-1/+0
|
* Split parent + container-dependency-versions from root pom.gjoranv2017-11-291-0/+1
| | | | | | - Add missing dependencies so that all provided non-yahoo jars are listed in container-dependency-versions. - Add relativePath for all child poms of parent.
* Add file distribution skeleton to config proxyHarald Musum2017-11-021-1/+1
|
* Add copyright headerJon Bratseth2017-10-271-0/+1
|
* Revert "Revert "version in def files are deprecated""Harald Musum2017-08-301-1/+0
|
* Revert "version in def files are deprecated"Harald Musum2017-08-301-0/+1
|
* version in def files are deprecatedHarald Musum2017-08-301-1/+0
|
* Add missing copyright headersgjoranv2017-08-181-0/+1
|
* Remove redundant def files.gjoranv2017-08-1715-182/+0
| | | | * They were probably copied to another module a long time ago.
* Add test for package and namespace.gjoranv2017-08-174-2/+46
|
* Remove LeafNode.initialize().gjoranv2017-07-201-13/+0
| | | | - package private, and seems unused.
* Minor cleanup: unnecessary annotation, use diamond operator.gjoranv2017-07-191-3/+2
|
* Declare helper methods static.gjoranv2017-07-191-9/+9
| | | | + bugfix: iterate over given list, not field 'vector'
* Refactor LeafNodeVectorgjoranv2017-07-191-20/+16
| | | | | | | - Remove unnecessary ctor. - Create unmodifiable list in ctor to reflect that the data is now immutable. - Remove defaultNode field.
* Remove InnerNodeVector.defaultNode and add a new primary ctor.gjoranv2017-07-193-52/+5
| | | | - defaultNode was a remnant used by the now removed setSize()
* Remove NodeVector.setSize()gjoranv2017-07-102-47/+21
| | | | - Remains from before the generated config classes had builders.
* Update copyright headersJon Bratseth2017-06-1457-57/+57
|
* Revert "Update copyright headers"Jon Bratseth2017-06-1457-57/+57
|
* Update copyright headersJon Bratseth2017-06-1457-57/+57
|
* Merge pull request #2764 from yahoo/gjoranv/use-builder-ctor-for-default-nodegjoranv2017-06-142-5/+17
|\ | | | | Use builder to instantiate default node.
| * Add comments about code that most likely can be removed.gjoranv2017-06-142-2/+2
| |
| * Use builder to instantiate default node.gjoranv2017-06-141-3/+15
| |
* | Remove carriage returnJon Bratseth2017-06-142-2/+2
|/
* Revert "Copyright header"Jon Bratseth2017-06-1357-59/+59
|
* Copyright headerJon Bratseth2017-06-1357-59/+59
|
* Set the default constructor on config classes private.gjoranv2017-06-121-3/+7
| | | | - Default constructors for arrays are still public.