summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrii Kalinich (GitHub) <AKalinich@luxoft.com>2021-04-30 22:40:28 +0300
committerGitHub <noreply@github.com>2021-04-30 22:40:28 +0300
commit5fdb741b3a4d49adc958bbe7cdf978e35f489981 (patch)
tree472219facab85f5e3f9d8768a9f083fb16de9526
parent5dad4c0bb70055fb55471d24089132a4647ec4cf (diff)
downloadsdl_core-fix/fix_Core_prematurely_sends_success_for_DeleteInteractionChoiceSet.tar.gz
Update src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/delete_interaction_choice_set_request.ccfix/fix_Core_prematurely_sends_success_for_DeleteInteractionChoiceSet
Co-authored-by: Collin <iCollin@users.noreply.github.com>
-rw-r--r--src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/delete_interaction_choice_set_request.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/delete_interaction_choice_set_request.cc b/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/delete_interaction_choice_set_request.cc
index 65d60d1e57..05347435d7 100644
--- a/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/delete_interaction_choice_set_request.cc
+++ b/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/delete_interaction_choice_set_request.cc
@@ -115,7 +115,7 @@ void DeleteInteractionChoiceSetRequest::on_event(
sync_primitives::AutoLock auto_lock(requests_lock_);
auto found_request = sent_requests_.find(correlation_id);
if (sent_requests_.end() == found_request) {
- SDL_LOG_WARN("Request with " << *found_request
+ SDL_LOG_WARN("Request with " << correlation_id
<< " correlation_id is not found.");
return;
}