Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-ext-simba-jy committed Jan 7, 2025
1 parent e8561cd commit a21c3ff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions cpp/lib/Authenticator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -510,13 +510,13 @@ namespace Client
renewTimeout, maxRetryCount, &elapsedTime, &m_retriedCount, NULL, SF_BOOLEAN_FALSE,
m_connection->proxy, m_connection->no_proxy, SF_BOOLEAN_FALSE, SF_BOOLEAN_FALSE))
{
//Fail to get the saml response. Retry.
isRetry = true;
ret = false;
CXX_LOG_WARN("sf", "Connection", "Connect",
"Retry on getting SAML response with one time token renewed for %d times "
"with updated retryTimeout = %d",
m_retriedCount, m_retryTimeout - elapsedTime);
isRetry = true;
ret = false;

}
else
{
Expand Down
2 changes: 1 addition & 1 deletion cpp/lib/IAuth.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ namespace Client
ssoURLStr = data["ssoUrl"].get<std::string>();
}
else {
CXX_LOG_WARN("sf", "Connection", "getIdpInfo",
CXX_LOG_ERROR("sf", "Connection", "getIdpInfo",
"Fail to get authenticator info");
m_errMsg = "Fail to get authenticator info";
ret = false;
Expand Down

0 comments on commit a21c3ff

Please sign in to comment.