You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In orchestrator.js a template should be created where the start_time of client processes is set to clientDelay as described in the experimental description file.
but then createShadowHostConfigseems to ignore the passed clientDelay param:
async function createShadowHostConfig(
shadowTemplate,
replicas,
clientDelay
) {
for (let i = 0; i < replicas.length; i++) {
shadowTemplate = yg.makeHost(
shadowTemplate,
replicas[i].name,
replicas[i].ip,
i,
replicas[i].procs
);
}
return shadowTemplate;
}
the resulting conf file always has a start_time: 0 even if clientDelay is specified. This seems to bug experiments with BFT-SMaRt if clients send requests before replicas are ready.
Edit: Not sure if this bug was fixed in the meantime, I am a little behind the most recent main branch. (Feel free to close if it is fixed now)
The text was updated successfully, but these errors were encountered:
In
orchestrator.js
a template should be created where thestart_time
of client processes is set toclientDelay
as described in the experimental description file.but then
createShadowHostConfig
seems to ignore the passedclientDelay
param:the resulting conf file always has a
start_time: 0
even ifclientDelay
is specified. This seems to bug experiments with BFT-SMaRt if clients send requests before replicas are ready.Edit: Not sure if this bug was fixed in the meantime, I am a little behind the most recent main branch. (Feel free to close if it is fixed now)
The text was updated successfully, but these errors were encountered: