File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
crates/sdk-core/tests/common Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -798,7 +798,7 @@ pub(crate) fn get_integ_tls_config() -> Option<TlsConfig> {
798798pub ( 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 ( ) )
Original file line number Diff line number Diff line change 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' )
1817relative_path=" target/${executable_path#* target/ } "
1918
2019cpus=" ${1:- 0.1} "
Original file line number Diff line number Diff line change 22
33# Run integ tests with OTel collector export enabled
44export 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
77cargo integ-test " ${@: 1} "
You can’t perform that action at this time.
0 commit comments