Skip to content

Commit 9ac72b7

Browse files
committed
fmt 2
1 parent 9e85e48 commit 9ac72b7

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

  • libdd-data-pipeline/src/telemetry

libdd-data-pipeline/src/telemetry/mod.rs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,19 +96,22 @@ impl TelemetryClientBuilder {
9696
self
9797
}
9898

99-
/// Sets the instrumentation session id sent as the `dd-session-id` header on telemetry requests.
99+
/// Sets the instrumentation session id sent as the `dd-session-id` header on telemetry
100+
/// requests.
100101
pub fn set_session_id(mut self, id: &str) -> Self {
101102
self.session_id = Some(id.to_string());
102103
self
103104
}
104105

105-
/// Sets the root session id sent as the `dd-root-session-id` header (only with a valid session id).
106+
/// Sets the root session id sent as the `dd-root-session-id` header (only with a valid session
107+
/// id).
106108
pub fn set_root_session_id(mut self, id: &str) -> Self {
107109
self.root_session_id = Some(id.to_string());
108110
self
109111
}
110112

111-
/// Sets the parent session id sent as the `dd-parent-session-id` header (only with a valid session id).
113+
/// Sets the parent session id sent as the `dd-parent-session-id` header (only with a valid
114+
/// session id).
112115
pub fn set_parent_session_id(mut self, id: &str) -> Self {
113116
self.parent_session_id = Some(id.to_string());
114117
self

0 commit comments

Comments
 (0)