-
Notifications
You must be signed in to change notification settings - Fork 6
Topic/rdksysintsw_3598 _rfc #146
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2413,12 +2413,15 @@ void RuntimeFeatureControlProcessor::processXconfResponseConfigDataPart(JSON *fe | |
| } | ||
| else | ||
| { | ||
|
|
||
| #if !defined(RDKB_SUPPORT) | ||
| if (newValue.empty()) | ||
| { | ||
| RDK_LOG(RDK_LOG_INFO, LOG_RFCMGR, "[%s][%d] EMPTY value for %s is rejected\n", __FUNCTION__, __LINE__, newKey.c_str()); | ||
| continue; | ||
| } | ||
|
|
||
| #endif | ||
|
|
||
|
||
| if(newKey == BOOTSTRAP_XCONF_URL_KEY_STR) | ||
| { | ||
| RDK_LOG(RDK_LOG_INFO, LOG_RFCMGR, "[%s][%d] Feature Name [%s] Current Value[%s] New Value[%s] \n", __FUNCTION__, __LINE__, newKey.c_str(), currentValue.c_str(), newValue.c_str()); | ||
|
|
@@ -2555,6 +2558,7 @@ bool RuntimeFeatureControlProcessor::isConfigValueChange(std ::string name, std | |
| } | ||
| else | ||
| { | ||
| #if !defined(RDKB_SUPPORT) | ||
|
||
| std::string account_key_str = RFC_ACCOUNT_ID_KEY_STR; | ||
| std::string unknown_str = "Unknown"; | ||
| bool isAccountKey = (key.find(account_key_str) != std::string::npos) ? true : false; | ||
|
|
@@ -2576,7 +2580,7 @@ bool RuntimeFeatureControlProcessor::isConfigValueChange(std ::string name, std | |
| RDK_LOG(RDK_LOG_INFO, LOG_RFCMGR, "[%s][%d] AccountId is Valid %s, Updating the device Database\n", __FUNCTION__, __LINE__,value.c_str()); | ||
| } | ||
| } | ||
|
|
||
| #endif | ||
| return true; | ||
| } | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove trailing whitespace/tabs at the end of this preprocessor directive line. Trailing whitespace can cause inconsistencies in code formatting and version control diffs.