Skip to content

Commit 536d91f

Browse files
committed
Fix url used when retrying UpdatePublicIP
1 parent 80a7cfd commit 536d91f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Rackspace/RackConnect/v3/RackConnectService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ await endpoint
295295
if (definition == null)
296296
throw new ArgumentNullException("definition");
297297

298-
Url endpoint = await _urlBuilder.GetEndpoint(cancellationToken).ConfigureAwait(false);
298+
string endpoint = await _urlBuilder.GetEndpoint(cancellationToken).ConfigureAwait(false);
299299

300300
Func<Task<PublicIP>> executeRequest = async () =>
301301
{

0 commit comments

Comments
 (0)