Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/sdk-core/tests/common/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ pub(crate) fn get_integ_tls_config() -> Option<TlsConfig> {
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::<Url>().unwrap())
Expand Down
3 changes: 1 addition & 2 deletions docker-cgroup-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down
2 changes: 1 addition & 1 deletion etc/integ-with-otel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Loading