aboutsummaryrefslogtreecommitdiffstats
path: root/config/src/test/java/com/yahoo
Commit message (Collapse)AuthorAgeFilesLines
* Replace all usages of Arrays.asList with List.of where possible.Henning Baldersheim2024-04-126-14/+12
|
* Unify on List.ofHenning Baldersheim2024-04-111-2/+1
|
* Log unknown error codeHarald Musum2024-03-141-1/+1
|
* Update copyrightJon Bratseth2023-10-0947-47/+47
|
* Simplify waiting for url when getting configHarald Musum2023-09-181-1/+2
| | | | No need to loop, config library will retry
* Simplify, since path and file config types cannot have a default valueHarald Musum2023-09-141-1/+1
|
* Remove dead code only used by unit testHarald Musum2023-09-141-30/+1
|
* Handle optional path separatelyHarald Musum2023-09-111-2/+3
|
* Support optional path in ConfigDefinition and ConfigDefinitionBuilderHarald Musum2023-09-082-0/+8
|
* Support optional 'path' config typeHarald Musum2023-09-074-2/+11
| | | | Initial work needed for this to work (config definition and config library)
* - Avoid single use of google's EqualsTesterHenning Baldersheim2023-09-031-14/+14
| | | | - GC all references to unused packages.
* Stack => Deque and gc unused ConfigFileFormatHenning Baldersheim2023-01-251-338/+0
|
* Move file handling down into FileSourcejonmv2022-11-011-3/+5
|
* Send model pathsJon Bratseth2022-09-171-3/+3
|
* Revert "Merge pull request #23910 from ↵Jon Bratseth2022-09-021-11/+61
| | | | | | | vespa-engine/revert-23907-bratseth/model-reference-cleanup" This reverts commit 37f0d3a64511b0dd0d902053be3a6cffc21acee6, reversing changes made to c23bba0b2cd6ab7699ee2b0d6be34c023159ffb8.
* Revert "Cleanup, more tests and separate resolved from not"Arnstein Ressem2022-09-021-61/+11
|
* Cleanup, more tests and separate resolved from notJon Bratseth2022-09-021-11/+61
|
* Add testJon Bratseth2022-09-011-0/+49
|
* Add 'model' config typeJon Bratseth2022-08-311-1/+2
|
* Use package name instead of general namespacejonmv2022-08-251-0/+27
|
* Deprecate ConfigGetterHarald Musum2022-07-074-4/+4
|
* Revoke com.yahoo.config.subscription as public APIHarald Musum2022-06-082-70/+1
| | | | Also remove some deprecated methods in ConfigGetter
* Move embedder config def to configdefinitions and serialize as referenceLester Solbakken2022-04-061-0/+7
|
* Use simplier format for string representation of config keyHarald Musum2022-02-041-1/+1
|
* Avoid clearing config response queueHarald Musum2022-01-031-3/+3
| | | | | | | There have been races due to the fact that we used to clear the queue when receiving a response, thus missing some of the responses. This stops clearing the queue and handles several items on the queue by polling until the queue is empty when a new item is found on the queue.
* Simplify MockConnectionHarald Musum2022-01-032-9/+9
| | | | | No need to use thread, start() isn't called anyway. Collapse methods into one to simplify
* GC deprecated junit assertThat.Henning Baldersheim2021-12-2126-202/+186
|
* Merge branch 'master' into ↵Harald Musum2021-12-112-49/+27
|\ | | | | | | revert-20366-revert-20350-hmusum/config-subscription-refactoring-part-5
| * unit test new functional APIsArne H Juul2021-12-092-49/+27
| |
* | Revert "Revert "Config subscription refactoring, part 5 [run-systemtest]""Harald Musum2021-12-067-101/+75
|/
* Revert "Config subscription refactoring, part 5 [run-systemtest]"Harald Musum2021-12-047-75/+101
|
* Cleanup use of requesters and config sourcesHarald Musum2021-12-037-83/+75
| | | | | Remove requesters() method from ConfigSubscriber as well, not useful for others and is documented as for internal use only
* Remove useless testHarald Musum2021-12-031-18/+0
| | | | We will never use more than one ConfigSourceSet for a GenericConfigSubscriber
* MInor cleanup of ConfigSource in subscriptionsHarald Musum2021-12-032-5/+8
|
* Simplify ConfigSubscriptionHarald Musum2021-11-292-12/+8
| | | | | COnfigSubscriber isn't needed for all subscription (used only in equals method, whoch is only used by tests)
* Revive test and test some moreHarald Musum2021-11-241-18/+20
|
* Extend test to cover case where we get new generation, but same configHarald Musum2021-11-111-14/+29
|
* Remove unused classesHarald Musum2021-10-142-53/+0
|
* Remove unused methodsHarald Musum2021-10-141-1/+0
|
* Cleanup, no functional changesHarald Musum2021-10-141-15/+0
|
* Reuse supervisor when we have oneHarald Musum2021-10-071-6/+5
| | | | Remove unnecessary constructor
* Update Verizon Media copyright notices.gjoranv2021-10-071-1/+1
|
* Update 2017 copyright notices.gjoranv2021-10-0741-41/+41
|
* setError() -> switchConnection() and remove setError()Harald Musum2021-10-061-2/+2
|
* Simplify backoff when getting config failsHarald Musum2021-10-051-67/+22
| | | | | | | | Use just one way of calculating delay until sending next request after and error: * do not retry faster after transient error, it may be overload * backoff based on number of failures * Use a max delay, but use a random factor anyway * Simplify
* Test with xxhash64 as wellHarald Musum2021-09-161-51/+78
|
* More cleanup of md5 usageHarald Musum2021-09-152-5/+7
|
* Remove getConfigMd5() from RawConfig, update usageHarald Musum2021-09-151-1/+1
|
* Remove md5 sum of config from initial state in config subscriptionHarald Musum2021-09-131-2/+2
| | | | | | Java applications will now request config with only xxhash64 of config, C++ applications will request config with md5 of config and config proxy will use what is in the request from the clients.
* Stop validating length of checksumsHarald Musum2021-09-092-2/+1
| | | | | | | Not needed, and the way we calculated hex string from a long did not always return 16 characters, so fixes that issue. Also log validation failures as warnings