aboutsummaryrefslogtreecommitdiffstats
path: root/config
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* Enable abi-check-plugin on relevant modules.Ilpo Ruotsalainen2018-12-182-0/+315
|
* Add url config typeLester Solbakken2018-12-183-21/+77
|
* Update method comment.gjoranv2018-12-141-2/+2
|
* Allow non-existent structs, arrays and maps in config payloads.gjoranv2018-12-142-37/+159
| | | | | | | | | - User config is already validated against the def schema during deploy, so we can assume that non-existent fields have been added to a later version of the config class than the application is using. + Add tests for complex data types in config payload. + Rename some methods and parameters for clarity.
* Inline helper method.gjoranv2018-12-131-7/+4
|
* Include stack trace when constructed in log warningBjørn Christian Seime2018-12-041-1/+7
|
* Prefix warning with Object.toString()Bjørn Christian Seime2018-12-041-1/+1
|
* Use thread-safe list implementation for 'subscriptionHandles'Bjørn Christian Seime2018-12-041-2/+2
|
* Use static loggerBjørn Christian Seime2018-12-041-1/+1
|
* Synchronize access to 'genreration' and 'internalRedeploy' fieldsBjørn Christian Seime2018-12-041-5/+9
|
* Synchronize access to 'state' fieldBjørn Christian Seime2018-12-041-8/+22
|
* Warn during finalization if ConfigSubscriber was not closedBjørn Christian Seime2018-12-041-7/+10
|
* Deprecate com.yahoo.config.provision.VersionJon Bratseth2018-12-011-1/+2
| | | | We have com.yahoo.component.Version, and one is enough.
* Add test and fix that repeated reconfigs works for schema changes.Henning Baldersheim2018-11-132-11/+7
|
* Merge pull request #7609 from vespa-engine/hmusum/remove-unused-def-filesValerij Fredriksen2018-11-094-108/+0
|\ | | | | Remove unused def files
| * Remove unused def filesHarald Musum2018-11-094-108/+0
| |
* | Revert "Support flag for replacing an array when overriding config, part 1"Harald Musum2018-11-091-10/+0
|/
* Support flag for replacing an array when overriding config, part 1Harald Musum2018-11-081-0/+10
|
* Revert "Supporting clearing config array when overriding config"Harald Musum2018-11-081-13/+0
|
* Simplify by using a removeArray method, make operation case insensitiveHarald Musum2018-11-051-15/+3
|
* Supporting clearing config array when ovverriding configHarald Musum2018-11-011-0/+25
|
* Remove the costly and unnecessary setSlobrokId interface.Henning Baldersheim2018-10-048-51/+42
|
* Remove unused code for generation callbackHenning Baldersheim2018-10-045-16/+2
|
* Use full nameHarald Musum2018-10-0352-56/+56
|
* Throw exception when ConfigFetcher::start() fails to get initial config.Tor Egge2018-10-031-0/+4
|
* Remove remains from qr-templates configgjoranv2018-09-216-1286/+0
| | | | + other unused .def and .cfg files from config module
* Remove dead codeJon Bratseth2018-09-191-2/+1
|
* Enhance array detection to avoid detecting .[document]. as an array.Henning Baldersheim2018-09-121-1/+1
|
* remove non-instant invocationHåvard Pettersen2018-09-052-2/+2
|
* Declare option for legacy formatHarald Musum2018-08-301-1/+1
|
* Remove whitespaceHenning Baldersheim2018-08-124-28/+28
|
* Pass stringref by valueHenning Baldersheim2018-08-113-13/+13
|
* Pass stringref by valueHenning Baldersheim2018-08-104-29/+29
|
* Remove stringref::c_str()Tor Brede Vekterli2018-07-252-2/+2
| | | | | | | | | | | | | The expected semantics of c_str() (a null-terminated string) cannot be satisfied with a string reference, so remove the function entirely to prevent people from using it in buggy ways. Replaces c_str() with data() in places where it is presumed safe, otherwise constructs temporary string instances. Certain callsites have been de-stringref'd in favor of regular strings, in particular where C APIs have been transitively called. The vast majority of these were called with string parameters anyway, so should not cause much extra allocation.
* Merge pull request #6444 from vespa-engine/bratseth/java-model-inferenceJon Bratseth2018-07-233-5/+6
|\ | | | | Bratseth/java model inference
| * Model inference WIPJon Bratseth2018-07-053-5/+6
| |
* | Use the guava version from container-dep-versions everywhere.gjoranv2018-07-191-2/+0
| |
* | Add option for printing config in legacy formatHarald Musum2018-07-161-1/+5
| |
* | Replace 'tonytv' with full name in author tagsBjørn Christian Seime2018-07-052-2/+2
|/
* Remove Scala remnants from Maven build filesOlli Virtanen2018-06-251-5/+0
|
* Merge pull request #6180 from vespa-engine/arnej/use-log-abortHenning Baldersheim2018-06-212-2/+5
|\ | | | | use LOG_ABORT not just abort()
| * some more cleanupArne Juul2018-06-201-1/+1
| |
| * use LOG_ABORT not just abort()Arne Juul2018-06-121-1/+4
| | | | | | | | | | | | | | | | | | | | * abort() has the unfortunate effect that nothing is seen in the log, just an event (which is usually not displayed); so ops people don't see that the program is crashing at all. * LOG_ABORT("message") will log an error with the message (and the file and line) before calling abort(), so it's easy to see what happened. * add or move <vespa/log/log.h> include and LOG_SETUP lines before LOG_ABORT is used (or included).
* | Merge pull request #6243 from vespa-engine/bratseth/nonfunctional-changes-2gjoranv2018-06-2010-15/+45
|\ \ | | | | | | Nonfunctional changes
| * | Nonfunctional changesJon Bratseth2018-06-2010-15/+45
| |/
* / Propagate internalRedeploy to the RawConfig instanceJon Bratseth2018-06-202-0/+13
|/
* Merge pull request #6174 from vespa-engine/arnej/cleanup-old-mak-filesHenning Baldersheim2018-06-121-1/+0
|\ | | | | clean up remnants of .mak files
| * clean up remnants of .mak filesArne Juul2018-06-111-1/+0
| |
| * Add temporary loggingJon Bratseth2018-06-111-0/+1
| |