Skip to content
Snippets Groups Projects
Commit 3b6a2067 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Update usage of time in armem_system_state

parent 77537fa4
No related branches found
No related tags found
1 merge request!228Resolve "Use armarx::Time as armem::Time instead of IceUtil::Time"
......@@ -63,7 +63,7 @@ namespace armarx::armem::server::systemstate::segment
EntityUpdate update;
update.entityID = providerId.withEntityName("CurrentCpuLoad");
update.confidence = 1.0;
update.timeCreated = armem::Time::now();
update.timeCreated = armem::Time::Now();
update.instancesData = { data };
segmentPtr->update(update);
......
......@@ -54,7 +54,7 @@ namespace armarx::armem::server::systemstate::segment
EntityUpdate update;
update.entityID = providerId.withEntityName("CurrentMemoryLoad");
update.confidence = 1.0;
update.timeCreated = armem::Time::now();
update.timeCreated = armem::Time::Now();
update.instancesData = { data };
segmentPtr->update(update);
......
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