We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d122ca9 commit 62f5cb2Copy full SHA for 62f5cb2
include/ydb-cpp-sdk/client/types/request_settings.h
@@ -8,6 +8,7 @@
8
9
#include <vector>
10
#include <utility>
11
+#include <string>
12
13
namespace NYdb::inline V3 {
14
@@ -20,6 +21,7 @@ struct TRequestSettings {
20
21
FLUENT_SETTING(std::string, RequestType);
22
FLUENT_SETTING(THeader, Header);
23
FLUENT_SETTING(TDuration, ClientTimeout);
24
+ FLUENT_SETTING(std::string, TraceParent); // Поле для передачи traceparent
25
26
TRequestSettings() = default;
27
@@ -29,6 +31,7 @@ struct TRequestSettings {
29
31
, RequestType_(other.RequestType_)
30
32
, Header_(other.Header_)
33
, ClientTimeout_(other.ClientTimeout_)
34
+ , TraceParent_(other.TraceParent)
35
{}
36
};
37
0 commit comments