diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_forking.cpp b/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_forking.cpp index 73de71abbc2..c0d2647a71e 100644 --- a/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_forking.cpp +++ b/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_forking.cpp @@ -40,7 +40,7 @@ is_exit_normal(int status) void sample_in_threads_and_fork(unsigned int num_threads, unsigned int sleep_time_ns) { - configure("my_test_service", "my_test_env", "0.0.1", "http://127.0.0.1:9126", "cpython", "3.10.6", "3.100", 256); + configure("my_test_service", "my_test_env", "0.0.1", "https://127.0.0.1:9126", "cpython", "3.10.6", "3.100", 256); std::atomic done(false); std::vector threads; std::vector ids; diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_threading.cpp b/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_threading.cpp index bc67324720e..1ea48c8ccce 100644 --- a/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_threading.cpp +++ b/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_threading.cpp @@ -24,7 +24,7 @@ generic_launch_sleep_upload(int n, unsigned int sleep_time_ns) void emulate_profiler(unsigned int num_threads, unsigned int sample_ns) { - configure("my_test_service", "my_test_env", "0.0.1", "http://127.0.0.1:9126", "cpython", "3.10.6", "3.100", 256); + configure("my_test_service", "my_test_env", "0.0.1", "https://127.0.0.1:9126", "cpython", "3.10.6", "3.100", 256); generic_launch_sleep_upload(num_threads, sample_ns); // Assumed to execute within a thread