summaryrefslogtreecommitdiffstats
path: root/config
Commit message (Collapse)AuthorAgeFilesLines
* Add a basic test for struct builders.gjoranv2019-10-111-11/+0
| | | | + Delete unused .def file
* Backport to older cmake for CentOS 8.Tor Egge2019-10-021-2/+2
|
* Avoid config generation race.Tor Egge2019-09-221-2/+11
|
* Remove findbugs annotations from code and build path.gjoranv2019-09-091-4/+0
| | | | | - jsr305 is needed by guava, which declares it as optional dep. - Remaining modules with annotations do not affect the container.
* update shell bootstrap sectionsArne Juul2019-09-041-0/+4
|
* Remove use of Nullable and NotNull annotationsHarald Musum2019-08-291-10/+0
| | | | | | Different implementations and using OSGi makes it really hard to use these annotations and the value of using them is IMHO not very high.
* Use milliseconds as promised.Henning Baldersheim2019-08-261-1/+1
|
* Avoid calling time(nullptr)Henning Baldersheim2019-08-263-11/+16
|
* Merge pull request #10383 from vespa-engine/bjorncs/config-thread-nameHenning Baldersheim2019-08-221-23/+11
|\ | | | | Assign name to config thread
| * Remove unused fieldBjørn Christian Seime2019-08-221-9/+0
| |
| * Assign name to config threadBjørn Christian Seime2019-08-221-16/+13
| |
* | Close config subscriber after getting configBjørn Christian Seime2019-08-223-13/+10
|/
* Cleanup of config definition name and namespaceHarald Musum2019-08-141-4/+0
| | | | | Config definition name and namespace are mandatory, so no need to fallback to default namespace anymore
* Require name and namespace to exist and not be emptyHarald Musum2019-08-132-12/+7
| | | | | This has been required a long time ago, this just fixes the code in ConfigKey
* Use std::_Exit instead of std::quick_exit.Tor Egge2019-08-061-1/+1
|
* Remove unused variable in vespa-configproxy-cmd.Tor Egge2019-08-021-2/+0
|
* Use template keyword when calling templated method.Tor Egge2019-08-011-1/+1
|
* Reduce code duplication, move one method into test classHarald Musum2019-07-302-45/+45
|
* Use VespaHttpClientBuilder in ConfigVerificationBjørn Christian Seime2019-07-252-21/+27
|
* Order dependencies by scopeBjørn Christian Seime2019-07-251-16/+21
|
* Version is not used anymore, simplify and cleanupHarald Musum2019-07-252-145/+26
|
* Remove unused codeHarald Musum2019-07-252-97/+0
|
* Remove constructor that uses default namespace (deprecated)Harald Musum2019-07-243-65/+10
|
* Keep method as public, part of APIHarald Musum2019-07-241-2/+2
|
* Cleanup code, no functional changesHarald Musum2019-07-2437-262/+230
|
* Remove unused codeHarald Musum2019-07-229-185/+12
|
* Remove usage of deprecated Method constructorBjørn Christian Seime2019-05-232-19/+8
|
* Improve readability and correct a commentJon Marius Venstad2019-05-222-5/+5
|
* Correct timeLeftMillis decrementationJon Marius Venstad2019-05-221-1/+1
|
* Add createConfigV3GetConfigMethod overload taking MethodHandlerBjørn Christian Seime2019-05-151-3/+13
|
* Clean up and shut down in correct order.Henning Baldersheim2019-05-111-13/+8
|
* Simplify by not caching a memberHenning Baldersheim2019-05-101-10/+5
|
* Simplify by not caching a memberHenning Baldersheim2019-05-101-8/+3
|
* Simplify by not caching a memberHenning Baldersheim2019-05-101-10/+5
|
* Simplify the supervisor responsibilityHenning Baldersheim2019-05-1011-74/+98
|
* = defaultHenning Baldersheim2019-05-051-1/+1
|
* Revert "Revert "Revert "Update to newer java lz4 version (1.5.1) and use new ↵Harald Musum2019-04-281-2/+2
| | | | artifact ids"""
* Revert "Revert "Update to newer java lz4 version (1.5.1) and use new ↵Harald Musum2019-04-261-2/+2
| | | | artifact ids""
* Revert "Update to newer java lz4 version (1.5.1) and use new artifact ids"Harald Musum2019-04-251-2/+2
|
* Merge pull request #9157 from vespa-engine/hmusum/update-java-lz4-depHarald Musum2019-04-251-2/+2
|\ | | | | Update to newer java lz4 version (1.5.1) and use new artifact ids
| * Update to newer java lz4 version (1.5.1) and use new artifact idsHarald Musum2019-04-231-2/+2
| |
* | Config generation with vespa-get-configHåkon Hallingstad2019-04-231-2/+7
|/
* Fix format string in config module.Tor Egge2019-03-121-1/+1
|
* Fix format strings in config module.Tor Egge2019-03-125-11/+11
|
* Cannot check for valid url downloader, connect is done later nowHarald Musum2019-03-011-2/+2
|
* Add null guardHarald Musum2019-02-281-2/+2
|
* Only connect if neededHarald Musum2019-02-281-1/+2
|
* Move connect to where the work is doneHarald Musum2019-02-281-1/+1
|
* Merge pull request #8598 from vespa-engine/hmusum/stop-using-connectSyncHarald Musum2019-02-282-3/+9
|\ | | | | Use connect instead of connectSync
| * Use connect instead of connectSyncHarald Musum2019-02-252-3/+9
| | | | | | | | | | | | When using TLS the handshake may not be finished when connectSync returns, which might lead to unpredicatable and confusing behavior, use connect and ping to check for RPC connection being up instead.