Skip to content

Commit

Permalink
use https
Browse files Browse the repository at this point in the history
  • Loading branch information
taegyunkim committed Dec 4, 2024
1 parent ede54f4 commit e2bd96d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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<bool> done(false);
std::vector<std::thread> threads;
std::vector<unsigned int> ids;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e2bd96d

Please sign in to comment.