Skip to content

Commit 060e46b

Browse files
authored
fix some missed renames for temporalio_sdk_core (#1061)
* fix some missed renames for temporalio_sdk_core * another script
1 parent 0c5ee51 commit 060e46b

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

crates/sdk-core/tests/common/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,7 @@ pub(crate) fn get_integ_tls_config() -> Option<TlsConfig> {
798798
pub(crate) fn get_integ_telem_options() -> TelemetryOptions {
799799
let mut ob = TelemetryOptionsBuilder::default();
800800
let filter_string =
801-
env::var("RUST_LOG").unwrap_or_else(|_| "INFO,temporal_sdk_core=INFO".to_string());
801+
env::var("RUST_LOG").unwrap_or_else(|_| "INFO,temporalio_sdk_core=INFO".to_string());
802802
if let Some(url) = env::var(OTEL_URL_ENV_VAR)
803803
.ok()
804804
.map(|x| x.parse::<Url>().unwrap())

docker-cgroup-tests.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
# memory = 256m (limit available RAM)
1414

1515
# cross-compiles integration tests with cargo zigbuild, then runs them using docker
16-
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')
17-
16+
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')
1817
relative_path="target/${executable_path#*target/}"
1918

2019
cpus="${1:-0.1}"

etc/integ-with-otel.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
# Run integ tests with OTel collector export enabled
44
export TEMPORAL_INTEG_OTEL_URL="grpc://localhost:4317"
5-
export TEMPORAL_TRACING_FILTER="temporal_sdk_core=DEBUG"
5+
export TEMPORAL_TRACING_FILTER="temporalio_sdk_core=DEBUG"
66

77
cargo integ-test "${@:1}"

0 commit comments

Comments
 (0)