diff --git a/crates/sdk-core/tests/common/mod.rs b/crates/sdk-core/tests/common/mod.rs index dbba4baf8..86408dcdc 100644 --- a/crates/sdk-core/tests/common/mod.rs +++ b/crates/sdk-core/tests/common/mod.rs @@ -798,7 +798,7 @@ pub(crate) fn get_integ_tls_config() -> Option { pub(crate) fn get_integ_telem_options() -> TelemetryOptions { let mut ob = TelemetryOptionsBuilder::default(); let filter_string = - env::var("RUST_LOG").unwrap_or_else(|_| "INFO,temporal_sdk_core=INFO".to_string()); + env::var("RUST_LOG").unwrap_or_else(|_| "INFO,temporalio_sdk_core=INFO".to_string()); if let Some(url) = env::var(OTEL_URL_ENV_VAR) .ok() .map(|x| x.parse::().unwrap()) diff --git a/docker-cgroup-tests.sh b/docker-cgroup-tests.sh index 0c6a17551..feb26c7ed 100755 --- a/docker-cgroup-tests.sh +++ b/docker-cgroup-tests.sh @@ -13,8 +13,7 @@ # memory = 256m (limit available RAM) # cross-compiles integration tests with cargo zigbuild, then runs them using docker -executable_path=$(cargo zigbuild --target x86_64-unknown-linux-musl --tests --features="temporal-sdk-core-protos/serde_serialize test-utilities ephemeral-server" --message-format=json | jq -r 'select(.profile?.test == true and .target?.name == "temporal_sdk_core" and .executable) | .executable') - +executable_path=$(cargo zigbuild --target x86_64-unknown-linux-musl --tests --features="test-utilities ephemeral-server" --message-format=json | jq -r 'select(.profile?.test == true and .target?.name == "temporalio_sdk_core" and .executable) | .executable') relative_path="target/${executable_path#*target/}" cpus="${1:-0.1}" diff --git a/etc/integ-with-otel.sh b/etc/integ-with-otel.sh index dae2d2e8b..def355857 100755 --- a/etc/integ-with-otel.sh +++ b/etc/integ-with-otel.sh @@ -2,6 +2,6 @@ # Run integ tests with OTel collector export enabled export TEMPORAL_INTEG_OTEL_URL="grpc://localhost:4317" -export TEMPORAL_TRACING_FILTER="temporal_sdk_core=DEBUG" +export TEMPORAL_TRACING_FILTER="temporalio_sdk_core=DEBUG" cargo integ-test "${@:1}"