File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -136,10 +136,10 @@ std::string AuthAgent::Unescape( const std::string& str )
136136
137137bool AuthAgent::CheckRetry ( long response )
138138{
139- // HTTP 500 and 503 should be temperory . just wait a bit and retry
139+ // HTTP 500 and 503 should be temporary . just wait a bit and retry
140140 if ( response == 500 || response == 503 )
141141 {
142- Log ( " resquest failed due to temperory error: %1%. retrying in 5 seconds" ,
142+ Log ( " request failed due to temporary error: %1%. retrying in 5 seconds" ,
143143 response, log::warning ) ;
144144
145145 os::Sleep ( 5 ) ;
@@ -149,7 +149,7 @@ bool AuthAgent::CheckRetry( long response )
149149 // HTTP 401 Unauthorized. the auth token has been expired. refresh it
150150 else if ( response == 401 )
151151 {
152- Log ( " resquest failed due to auth token expired: %1%. refreshing token" ,
152+ Log ( " request failed due to auth token expired: %1%. refreshing token" ,
153153 response, log::warning ) ;
154154
155155 m_auth.Refresh () ;
You can’t perform that action at this time.
0 commit comments