You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat docs: use schemas in core for docs in more cases
Also improve diagnostics for utils::FindResource
Tests: протестировано в CI, проверено локально что все поля отображаются и форматируются приятно для глаза (или хотя бы как было раньше)
commit_hash:1880366a72b980ec3fb3e76658c7454414ca38c5
/// failed-updates-before-expiration | the number of consecutive failed updates for data expiration | --
74
-
/// has-pre-assign-check | enables the check before changing the value in the cache, by default it is the check that the new value is not empty | false
75
-
/// alert-on-failing-to-update-times | fire an alert if the cache update failed specified amount of times in a row. If zero - alerts are disabled. Value from dynamic config takes priority over static | 0
76
-
/// safe-data-lifetime | enables awaiting data destructors in the component's destructor. Can be set to `false` if the stored data does not refer to the component and its dependencies. | true
Copy file name to clipboardExpand all lines: core/include/userver/clients/http/component_core.hpp
+5-15Lines changed: 5 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -35,21 +35,11 @@ namespace components {
35
35
/// * @ref HTTP_CLIENT_CONNECT_THROTTLE
36
36
/// * @ref HTTP_CLIENT_CONNECTION_POOL_SIZE
37
37
///
38
-
/// ## Static options:
39
-
/// Name | Description | Default value
40
-
/// ---- | ----------- | -------------
41
-
/// pool-statistics-disable | set to true to disable statistics for connection pool | false
42
-
/// thread-name-prefix | set OS thread name to this value | ''
43
-
/// threads | number of threads to process low level HTTP related IO system calls | 8
44
-
/// fs-task-processor | task processor to run blocking HTTP related calls, like DNS resolving or hosts reading | engine::current_task::GetBlockingTaskProcessor()
45
-
/// destination-metrics-auto-max-size | set max number of automatically created destination metrics | 100
46
-
/// user-agent | User-Agent HTTP header to show on all requests, result of utils::GetUserverIdentifier() if empty | empty
47
-
/// testsuite-enabled | enable testsuite testing support | false
48
-
/// testsuite-timeout | if set, force the request timeout regardless of the value passed in code | -
49
-
/// testsuite-allowed-url-prefixes | if set, checks that all URLs start with any of the passed prefixes, asserts if not. Set for testing purposes only. | ''
50
-
/// dns_resolver | server hostname resolver type (getaddrinfo or async) | 'async'
51
-
/// set-deadline-propagation-header | whether to set http::common::kXYaTaxiClientTimeoutMs request header, see @ref scripts/docs/en/userver/deadline_propagation.md | true
52
-
/// cancellation-policy | Cancellation policy for new requests. | cancel
0 commit comments