Prefer WaitOne with TimeSpan

This commit is contained in:
cinder
2025-01-13 07:44:05 -06:00
parent 6380fe19d2
commit d412aa3905
47 changed files with 119 additions and 109 deletions

View File

@@ -43,7 +43,7 @@ namespace OpenMetaverse.TestClient
{
return "RequestParcelVoiceInfo failed. Not available for the current grid?";
}
ParcelVoiceInfoEvent.WaitOne(30 * 1000, false);
ParcelVoiceInfoEvent.WaitOne(TimeSpan.FromSeconds(30), false);
if (string.IsNullOrEmpty(VoiceRegionName) && -1 == VoiceLocalID)
{

View File

@@ -42,7 +42,7 @@ namespace OpenMetaverse.TestClient
{
return "RequestProvisionAccount failed. Not available for the current grid?";
}
ProvisionEvent.WaitOne(30 * 1000, false);
ProvisionEvent.WaitOne(TimeSpan.FromSeconds(30), false);
if (string.IsNullOrEmpty(VoiceAccount) && string.IsNullOrEmpty(VoicePassword))
{