Skip to content

Commit

Permalink
Rename entity_creation_trigger to discovery_trigger
Browse files Browse the repository at this point in the history
Signed-off-by: tempate <[email protected]>
  • Loading branch information
Tempate committed Oct 25, 2023
1 parent 143aad9 commit 3a2af19
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion ddsrecorder/src/cpp/tool/DdsRecorder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ DdsRecorder::DdsRecorder(

// Create the internal communication (built-in) topics
const auto& internal_topic = utils::Heritable<DistributedTopic>::make_heritable(type_object_topic());

configuration.ddspipe_configuration.builtin_topics.insert(internal_topic);

// Create Participant Database
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ void RecorderConfiguration::load_ddsrecorder_configuration_(
ddspipe_configuration.init_enabled = true;

// The recorder's DdsPipe trigger is the discovery of a writer
ddspipe_configuration.entity_creation_trigger = EntityCreationTrigger::WRITER;
ddspipe_configuration.discovery_trigger = DiscoveryTrigger::WRITER;

// Initialize controller domain with the same as the one being recorded
// WARNING: dds tag must have been parsed beforehand
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ void ReplayerConfiguration::load_ddsreplayer_configuration_(
ddspipe_configuration.init_enabled = true;

// The replayer's DdsPipe doesn't get triggered by the discovery of entities
ddspipe_configuration.entity_creation_trigger = EntityCreationTrigger::NONE;
ddspipe_configuration.discovery_trigger = DiscoveryTrigger::NONE;
}
catch (const std::exception& e)
{
Expand Down

0 comments on commit 3a2af19

Please sign in to comment.