Skip to content
Snippets Groups Projects
Commit cc50883b authored by Fabian Reister's avatar Fabian Reister
Browse files

simplewriterbase: forgot to call defaultProperties()

parent 01bd3881
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,8 @@ namespace armarx::armem::client::util
const std::string prefix = propertyPrefix();
props = defaultProperties();
def->optional(props.memoryName, prefix + "Memory");
def->optional(props.coreSegmentName, prefix + "CoreSegment");
......@@ -27,7 +29,7 @@ namespace armarx::armem::client::util
void SimpleWriterBase::connect()
{
// Wait for the memory to become available and add it as dependency.
ARMARX_IMPORTANT << "Writer: Waiting for memory '"
ARMARX_IMPORTANT << "SimpleWriterBase: Waiting for memory '"
<< props.memoryName << "' ...";
auto result = component.useMemory(props.memoryName);
if (not result.success)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment