Skip to content

Commit

Permalink
Remove commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
alfred2g committed Apr 9, 2024
1 parent 39adf37 commit eb030ab
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions samples/secure_tunneling/secure_tunnel/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,6 @@ int main(int argc, char *argv[])
*/
while (keepRunning)
{
//std::this_thread::sleep_for(2000ms);
std::this_thread::sleep_for(std::chrono::milliseconds(2000));
if (localProxyMode == AWS_SECURE_TUNNELING_SOURCE_MODE)
{
Expand Down Expand Up @@ -390,7 +389,6 @@ int main(int argc, char *argv[])
connectionId = 2;
secureTunnel->SendConnectionStart(m_serviceId.value(), connectionId);

//std::this_thread::sleep_for(2000ms);
std::this_thread::sleep_for(std::chrono::milliseconds(2000));
}
else
Expand All @@ -401,7 +399,6 @@ int main(int argc, char *argv[])
}
}

//std::this_thread::sleep_for(3000ms);
std::this_thread::sleep_for(std::chrono::milliseconds(3000));

fprintf(stdout, "Closing Connection\n");
Expand Down
1 change: 0 additions & 1 deletion samples/secure_tunneling/tunnel_notification/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ int main(int argc, char *argv[])

while (1)
{
//std::this_thread::sleep_for(500ms);
std::this_thread::sleep_for(std::chrono::milliseconds(500));
continue;
}
Expand Down

0 comments on commit eb030ab

Please sign in to comment.