Skip to content

Commit 68f2984

Browse files
author
tempate
committed
Rename entity_creation_trigger to discovery_trigger
Signed-off-by: tempate <danieldiaz@eprosima.com>
1 parent 5e25879 commit 68f2984

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

ddsrecorder/src/cpp/tool/DdsRecorder.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ DdsRecorder::DdsRecorder(
9595

9696
// Create the internal communication (built-in) topics
9797
const auto& internal_topic = utils::Heritable<DistributedTopic>::make_heritable(type_object_topic());
98-
9998
configuration.ddspipe_configuration.builtin_topics.insert(internal_topic);
10099

101100
// Create Participant Database

ddsrecorder_yaml/src/cpp/recorder/YamlReaderConfiguration.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ void RecorderConfiguration::load_ddsrecorder_configuration_(
127127
ddspipe_configuration.init_enabled = true;
128128

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

132132
// Initialize controller domain with the same as the one being recorded
133133
// WARNING: dds tag must have been parsed beforehand

ddsrecorder_yaml/src/cpp/replayer/YamlReaderConfiguration.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ void ReplayerConfiguration::load_ddsreplayer_configuration_(
131131
ddspipe_configuration.init_enabled = true;
132132

133133
// The replayer's DdsPipe doesn't get triggered by the discovery of entities
134-
ddspipe_configuration.entity_creation_trigger = EntityCreationTrigger::NONE;
134+
ddspipe_configuration.discovery_trigger = DiscoveryTrigger::NONE;
135135
}
136136
catch (const std::exception& e)
137137
{

0 commit comments

Comments
 (0)