Skip to content
Snippets Groups Projects
Commit d39e3200 authored by Miguel Angel Reina Ortega's avatar Miguel Angel Reina Ortega
Browse files

Increase waiting time after timeWindow expires

parent cf117723
No related branches found
No related tags found
No related merge requests found
......@@ -10911,7 +10911,7 @@ module OneM2M_PermutationFunctions {
t_notificationTimer.start;
v_elapsedTime := t_notificationTimer.read;
//v_myAbsRelTimestamp = 2.0 seconds
while (v_elapsedTime < 2.0){ // Wait until window size expires
while (v_elapsedTime < 4.0){ // Wait until window size expires
v_elapsedTime := t_notificationTimer.read;
}
t_notificationTimer.stop;
......@@ -11111,7 +11111,7 @@ module OneM2M_PermutationFunctions {
t_notificationTimer.start;
v_elapsedTime := t_notificationTimer.read;
//v_myAbsRelTimestamp = 2.0 seconds
while (v_elapsedTime < 2.0){ // Wait until window size expires
while (v_elapsedTime < 4.0){ // Wait until window size expires
v_elapsedTime := t_notificationTimer.read;
}
t_notificationTimer.stop;
......
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