Skip to content

Commit

Permalink
Reducing delay between UDC requests to 100ms (#25635)
Browse files Browse the repository at this point in the history
  • Loading branch information
sharadb-amazon authored and pull[bot] committed Jan 26, 2024
1 parent 9c7f478 commit 1056906
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ CHIP_ERROR UserDirectedCommissioningClient::SendUDCMessage(TransportMgrBase * tr
ChipLogError(AppServer, "UDC SendMessage failed: %" CHIP_ERROR_FORMAT, err.Format());
return err;
}
sleep(1);
usleep(100 * 1000); // 100ms
}

ChipLogProgress(Inet, "UDC msg sent");
Expand Down

0 comments on commit 1056906

Please sign in to comment.