Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
Change exception on frequency version register into a debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
xlz-jbleclere committed Oct 29, 2020
1 parent f2ebddc commit 55db207
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/drm_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1646,7 +1646,7 @@ class DRM_LOCAL DrmManager::Impl {
}
int ret = readDrmAddress( REG_FREQ_DETECTION_VERSION, reg );
if ( ret != 0 ) {
Unreachable( "Failed to read DRM Ctrl frequency detection version register, errcode = {}. ", ret ); //LCOV_EXCL_LINE
Debug( "Failed to read DRM Ctrl frequency detection version register, errcode = {}. ", ret ); //LCOV_EXCL_LINE
}
if ( reg == FREQ_DETECTION_VERSION_EXPECTED ) {
// Use Method 1
Expand Down
2 changes: 1 addition & 1 deletion source/ws_client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ void DrmWSClient::requestOAuth2token( const TClock::time_point deadline ) {
}
}

// Request a new token and wait response
// Setup a request to get a new token
CurlEasyPost req;
req.setVerbosity( mVerbosity );
req.setHostResolves( mHostResolvesJson );
Expand Down

0 comments on commit 55db207

Please sign in to comment.