We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c111d9 commit b3128ceCopy full SHA for b3128ce
1 file changed
src/TfScheduler/TfSchedulerDevice.cxx
@@ -90,7 +90,6 @@ bool TfSchedulerDevice::ConditionalRun()
90
return true;
91
}
92
93
-
94
void TfSchedulerDevice::TfSchedulerServiceThread()
95
{
96
// wait for the device to go into RUNNING state
@@ -112,7 +111,7 @@ void TfSchedulerDevice::TfSchedulerServiceThread()
112
111
auto [lNewInstIt, lEmplaced ] = mSchedulerInstances.emplace(
113
lNewPartitionRequest.mPartitionId,
114
std::make_unique<TfSchedulerInstanceHandler>(*this,
115
- mDiscoveryConfig->status().info().process_id() + "-" + lNewPartitionRequest.mPartitionId,
+ std::string("0"), // TODO: add multiple schedulers
116
lNewPartitionRequest
117
) // value
118
);
0 commit comments