Skip to content

Commit

Permalink
Remove CRLF chars from version file on remote config
Browse files Browse the repository at this point in the history
  • Loading branch information
estringana committed Jan 21, 2025
1 parent 6b3218e commit 8a44efe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components-rs/remote_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ pub unsafe extern "C" fn ddog_init_remote_config_state(
Box::new(RemoteConfigState {
manager: RemoteConfigManager::new(ConfigInvariants {
language: "php".to_string(),
tracer_version: include_str!("../VERSION").into(),
tracer_version: include_str!("../VERSION").trim().into(),
endpoint: endpoint.clone(),
products: DDTRACE_REMOTE_CONFIG_PRODUCTS.to_vec(),
capabilities: DDTRACE_REMOTE_CONFIG_CAPABILITIES.to_vec(),
Expand Down

0 comments on commit 8a44efe

Please sign in to comment.