File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,6 @@ DdsRecorder::DdsRecorder(
95
95
96
96
// Create the internal communication (built-in) topics
97
97
const auto & internal_topic = utils::Heritable<DistributedTopic>::make_heritable (type_object_topic ());
98
-
99
98
configuration.ddspipe_configuration .builtin_topics .insert (internal_topic);
100
99
101
100
// Create Participant Database
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ void RecorderConfiguration::load_ddsrecorder_configuration_(
127
127
ddspipe_configuration.init_enabled = true ;
128
128
129
129
// 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;
131
131
132
132
// Initialize controller domain with the same as the one being recorded
133
133
// WARNING: dds tag must have been parsed beforehand
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ void ReplayerConfiguration::load_ddsreplayer_configuration_(
131
131
ddspipe_configuration.init_enabled = true ;
132
132
133
133
// 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;
135
135
}
136
136
catch (const std::exception& e)
137
137
{
You can’t perform that action at this time.
0 commit comments