Skip to content

Commit 5119ffc

Browse files
authored
RemoteRendering: Handle nulls in session properties (Azure#19582)
The service changed recently and is no longer returning properties with null values. This exposed an assumption in the client which had to be fixed. I've modified the session records so this fact is tested in playback. The change in the service and the fact that the environment variables were wrongly named, suggest that the test pipeline has not been running tests live. Otherwise I cannot explain how the test pipeline has been green recently.
1 parent 4b90761 commit 5119ffc

File tree

6 files changed

+97
-94
lines changed

6 files changed

+97
-94
lines changed

sdk/remoterendering/azure-mixedreality-remoterendering/src/main/java/com/azure/mixedreality/remoterendering/RemoteRenderingAsyncClient.java

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838

3939
import java.time.Duration;
4040
import java.util.Objects;
41+
import java.util.Optional;
4142
import java.util.UUID;
4243
import java.util.stream.Collectors;
4344

@@ -517,14 +518,14 @@ private static RenderingSession fromGenerated(SessionProperties sessionPropertie
517518
}
518519
return new RenderingSession(
519520
sessionProperties.getId(),
520-
sessionProperties.getArrInspectorPort(),
521-
sessionProperties.getHandshakePort(),
522-
Duration.ofMinutes(sessionProperties.getElapsedTimeMinutes()),
521+
Optional.ofNullable(sessionProperties.getArrInspectorPort()).orElse(0),
522+
Optional.ofNullable(sessionProperties.getHandshakePort()).orElse(0),
523+
Duration.ofMinutes(Optional.ofNullable(sessionProperties.getElapsedTimeMinutes()).orElse(0)),
523524
sessionProperties.getHostname(),
524-
Duration.ofMinutes(sessionProperties.getMaxLeaseTimeMinutes()),
525+
Duration.ofMinutes(Optional.ofNullable(sessionProperties.getMaxLeaseTimeMinutes()).orElse(0)),
525526
RenderingSessionSize.fromString(sessionProperties.getSize().toString()),
526527
RenderingSessionStatus.fromString(sessionProperties.getStatus().toString()),
527-
sessionProperties.getTeraflops(),
528+
Optional.ofNullable(sessionProperties.getTeraflops()).orElse(0.0f),
528529
fromGenerated(sessionProperties.getError()),
529530
sessionProperties.getCreationTime());
530531
}

sdk/remoterendering/azure-mixedreality-remoterendering/src/samples/java/com/azure/mixedreality/remoterendering/SampleEnvironment.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@
1515
*/
1616
public class SampleEnvironment {
1717

18-
private final String accountId = Configuration.getGlobalConfiguration().get("MIXEDREALITY_ARR_ACCOUNT_ID");
19-
private final String accountDomain = Configuration.getGlobalConfiguration().get("MIXEDREALITY_ARR_ACCOUNT_DOMAIN");
20-
private final String accountKey = Configuration.getGlobalConfiguration().get("MIXEDREALITY_ARR_ACCOUNT_KEY");
21-
private final String storageAccountName = Configuration.getGlobalConfiguration().get("MIXEDREALITY_ARR_STORAGE_ACCOUNT_NAME");
22-
private final String storageAccountKey = Configuration.getGlobalConfiguration().get("MIXEDREALITY_ARR_STORAGE_ACCOUNT_KEY");
23-
private final String blobContainerName = Configuration.getGlobalConfiguration().get("MIXEDREALITY_ARR_BLOB_CONTAINER_NAME");
24-
private final String blobContainerSasToken = Configuration.getGlobalConfiguration().get("MIXEDREALITY_ARR_SAS_TOKEN");
25-
private final String serviceEndpoint = Configuration.getGlobalConfiguration().get("MIXEDREALITY_ARR_SERVICE_ENDPOINT");
26-
27-
private final String tenantId = Configuration.getGlobalConfiguration().get("MIXEDREALITY_TENANT_ID");
28-
private final String clientId = Configuration.getGlobalConfiguration().get("MIXEDREALITY_CLIENT_ID");
29-
private final String clientSecret = Configuration.getGlobalConfiguration().get("MIXEDREALITY_CLIENT_SECRET");
18+
private final String accountId = Configuration.getGlobalConfiguration().get("REMOTERENDERING_ARR_ACCOUNT_ID");
19+
private final String accountDomain = Configuration.getGlobalConfiguration().get("REMOTERENDERING_ARR_ACCOUNT_DOMAIN");
20+
private final String accountKey = Configuration.getGlobalConfiguration().get("REMOTERENDERING_ARR_ACCOUNT_KEY");
21+
private final String storageAccountName = Configuration.getGlobalConfiguration().get("REMOTERENDERING_ARR_STORAGE_ACCOUNT_NAME");
22+
private final String storageAccountKey = Configuration.getGlobalConfiguration().get("REMOTERENDERING_ARR_STORAGE_ACCOUNT_KEY");
23+
private final String blobContainerName = Configuration.getGlobalConfiguration().get("REMOTERENDERING_ARR_BLOB_CONTAINER_NAME");
24+
private final String blobContainerSasToken = Configuration.getGlobalConfiguration().get("REMOTERENDERING_ARR_SAS_TOKEN");
25+
private final String serviceEndpoint = Configuration.getGlobalConfiguration().get("REMOTERENDERING_ARR_SERVICE_ENDPOINT");
26+
27+
private final String tenantId = Configuration.getGlobalConfiguration().get("REMOTERENDERING_TENANT_ID");
28+
private final String clientId = Configuration.getGlobalConfiguration().get("REMOTERENDERING_CLIENT_ID");
29+
private final String clientSecret = Configuration.getGlobalConfiguration().get("REMOTERENDERING_CLIENT_SECRET");
3030

3131
/**
3232
* Get the accounId used in samples.

sdk/remoterendering/azure-mixedreality-remoterendering/src/test/java/com/azure/mixedreality/remoterendering/RemoteRenderingTestBase.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ public class RemoteRenderingTestBase extends TestBase {
2323
static final String RESPONSE_CODE_400 = "400";
2424
static final String RESPONSE_CODE_403 = "403";
2525

26-
private final String accountId = Configuration.getGlobalConfiguration().get("MIXEDREALITY_ARR_ACCOUNT_ID");
27-
private final String accountDomain = Configuration.getGlobalConfiguration().get("MIXEDREALITY_ARR_ACCOUNT_DOMAIN");
28-
private final String accountKey = Configuration.getGlobalConfiguration().get("MIXEDREALITY_ARR_ACCOUNT_KEY");
29-
private final String storageAccountName = Configuration.getGlobalConfiguration().get("MIXEDREALITY_ARR_STORAGE_ACCOUNT_NAME");
30-
private final String storageAccountKey = Configuration.getGlobalConfiguration().get("MIXEDREALITY_ARR_STORAGE_ACCOUNT_KEY");
31-
private final String blobContainerName = Configuration.getGlobalConfiguration().get("MIXEDREALITY_ARR_BLOB_CONTAINER_NAME");
32-
private final String blobContainerSasToken = Configuration.getGlobalConfiguration().get("MIXEDREALITY_ARR_SAS_TOKEN");
33-
private final String serviceEndpoint = Configuration.getGlobalConfiguration().get("MIXEDREALITY_ARR_SERVICE_ENDPOINT");
26+
private final String accountId = Configuration.getGlobalConfiguration().get("REMOTERENDERING_ARR_ACCOUNT_ID");
27+
private final String accountDomain = Configuration.getGlobalConfiguration().get("REMOTERENDERING_ARR_ACCOUNT_DOMAIN");
28+
private final String accountKey = Configuration.getGlobalConfiguration().get("REMOTERENDERING_ARR_ACCOUNT_KEY");
29+
private final String storageAccountName = Configuration.getGlobalConfiguration().get("REMOTERENDERING_ARR_STORAGE_ACCOUNT_NAME");
30+
private final String storageAccountKey = Configuration.getGlobalConfiguration().get("REMOTERENDERING_ARR_STORAGE_ACCOUNT_KEY");
31+
private final String blobContainerName = Configuration.getGlobalConfiguration().get("REMOTERENDERING_ARR_BLOB_CONTAINER_NAME");
32+
private final String blobContainerSasToken = Configuration.getGlobalConfiguration().get("REMOTERENDERING_ARR_SAS_TOKEN");
33+
private final String serviceEndpoint = Configuration.getGlobalConfiguration().get("REMOTERENDERING_ARR_SERVICE_ENDPOINT");
3434

3535
// NOT REAL ACCOUNT DETAILS
3636
private final String playbackAccountId = "d879da79-415d-45f0-b641-1cfec1386ddf";

sdk/remoterendering/azure-mixedreality-remoterendering/src/test/resources/session-records/RemoteRenderingAsyncClientTest.sessionTest[1].json

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"X-Content-Type-Options" : "nosniff",
1111
"MS-CV" : "ZBDyIOQCOkacWkES/xrwew.0",
1212
"retry-after" : "0",
13-
"Content-Length" : "265",
13+
"Content-Length" : "161",
1414
"StatusCode" : "201",
15-
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"arrInspectorPort\":0,\"handshakePort\":0,\"elapsedTimeMinutes\":0,\"hostname\":null,\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Starting\",\"teraflops\":0.0,\"error\":null}",
15+
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"elapsedTimeMinutes\":0,\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Starting\"}",
1616
"Date" : "Mon, 08 Feb 2021 12:50:49 GMT",
1717
"Content-Type" : "application/json; charset=utf-8"
1818
},
@@ -26,9 +26,9 @@
2626
"X-Content-Type-Options" : "nosniff",
2727
"MS-CV" : "5Xr9w4Czt0egepAW5i8L/Q.0",
2828
"retry-after" : "0",
29-
"Content-Length" : "265",
29+
"Content-Length" : "161",
3030
"StatusCode" : "200",
31-
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"arrInspectorPort\":0,\"handshakePort\":0,\"elapsedTimeMinutes\":0,\"hostname\":null,\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Starting\",\"teraflops\":0.0,\"error\":null}",
31+
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"elapsedTimeMinutes\":0,\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Starting\"}",
3232
"Date" : "Mon, 08 Feb 2021 12:50:59 GMT",
3333
"Content-Type" : "application/json; charset=utf-8"
3434
},
@@ -42,9 +42,9 @@
4242
"X-Content-Type-Options" : "nosniff",
4343
"MS-CV" : "JaYYYH/ccEmnF3RYb5MKKA.0",
4444
"retry-after" : "0",
45-
"Content-Length" : "265",
45+
"Content-Length" : "161",
4646
"StatusCode" : "200",
47-
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"arrInspectorPort\":0,\"handshakePort\":0,\"elapsedTimeMinutes\":0,\"hostname\":null,\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Starting\",\"teraflops\":0.0,\"error\":null}",
47+
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"elapsedTimeMinutes\":0,\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Starting\"}",
4848
"Date" : "Mon, 08 Feb 2021 12:51:10 GMT",
4949
"Content-Type" : "application/json; charset=utf-8"
5050
},
@@ -58,9 +58,9 @@
5858
"X-Content-Type-Options" : "nosniff",
5959
"MS-CV" : "mSiEAl+xh0uG9/l0N7jUxQ.0",
6060
"retry-after" : "0",
61-
"Content-Length" : "265",
61+
"Content-Length" : "161",
6262
"StatusCode" : "200",
63-
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"arrInspectorPort\":0,\"handshakePort\":0,\"elapsedTimeMinutes\":0,\"hostname\":null,\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Starting\",\"teraflops\":0.0,\"error\":null}",
63+
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"elapsedTimeMinutes\":0,\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Starting\"}",
6464
"Date" : "Mon, 08 Feb 2021 12:51:20 GMT",
6565
"Content-Type" : "application/json; charset=utf-8"
6666
},
@@ -74,9 +74,9 @@
7474
"X-Content-Type-Options" : "nosniff",
7575
"MS-CV" : "dLn4n++e+kSnZfSfEO2RwQ.0",
7676
"retry-after" : "0",
77-
"Content-Length" : "265",
77+
"Content-Length" : "161",
7878
"StatusCode" : "200",
79-
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"arrInspectorPort\":0,\"handshakePort\":0,\"elapsedTimeMinutes\":0,\"hostname\":null,\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Starting\",\"teraflops\":0.0,\"error\":null}",
79+
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"elapsedTimeMinutes\":0,\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Starting\"}",
8080
"Date" : "Mon, 08 Feb 2021 12:51:30 GMT",
8181
"Content-Type" : "application/json; charset=utf-8"
8282
},
@@ -90,9 +90,9 @@
9090
"X-Content-Type-Options" : "nosniff",
9191
"MS-CV" : "2oucYnXLS0O+bXAzvDatOg.0",
9292
"retry-after" : "0",
93-
"Content-Length" : "265",
93+
"Content-Length" : "161",
9494
"StatusCode" : "200",
95-
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"arrInspectorPort\":0,\"handshakePort\":0,\"elapsedTimeMinutes\":0,\"hostname\":null,\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Starting\",\"teraflops\":0.0,\"error\":null}",
95+
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"elapsedTimeMinutes\":0,\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Starting\"}",
9696
"Date" : "Mon, 08 Feb 2021 12:51:40 GMT",
9797
"Content-Type" : "application/json; charset=utf-8"
9898
},
@@ -106,9 +106,9 @@
106106
"X-Content-Type-Options" : "nosniff",
107107
"MS-CV" : "8cNNtk1NYkGPcxBY/3VD+A.0",
108108
"retry-after" : "0",
109-
"Content-Length" : "265",
109+
"Content-Length" : "161",
110110
"StatusCode" : "200",
111-
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"arrInspectorPort\":0,\"handshakePort\":0,\"elapsedTimeMinutes\":0,\"hostname\":null,\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Starting\",\"teraflops\":0.0,\"error\":null}",
111+
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"elapsedTimeMinutes\":0,\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Starting\"}",
112112
"Date" : "Mon, 08 Feb 2021 12:51:50 GMT",
113113
"Content-Type" : "application/json; charset=utf-8"
114114
},
@@ -122,9 +122,9 @@
122122
"X-Content-Type-Options" : "nosniff",
123123
"MS-CV" : "lJSNi/GUZUa5snsMoTu0DQ.0",
124124
"retry-after" : "0",
125-
"Content-Length" : "265",
125+
"Content-Length" : "161",
126126
"StatusCode" : "200",
127-
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"arrInspectorPort\":0,\"handshakePort\":0,\"elapsedTimeMinutes\":0,\"hostname\":null,\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Starting\",\"teraflops\":0.0,\"error\":null}",
127+
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"elapsedTimeMinutes\":0,\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Starting\"}",
128128
"Date" : "Mon, 08 Feb 2021 12:52:00 GMT",
129129
"Content-Type" : "application/json; charset=utf-8"
130130
},
@@ -138,9 +138,9 @@
138138
"X-Content-Type-Options" : "nosniff",
139139
"MS-CV" : "/UnIZQFKQ0iY02kVJDkJmA.0",
140140
"retry-after" : "0",
141-
"Content-Length" : "265",
141+
"Content-Length" : "161",
142142
"StatusCode" : "200",
143-
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"arrInspectorPort\":0,\"handshakePort\":0,\"elapsedTimeMinutes\":0,\"hostname\":null,\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Starting\",\"teraflops\":0.0,\"error\":null}",
143+
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"elapsedTimeMinutes\":0,\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Starting\"}",
144144
"Date" : "Mon, 08 Feb 2021 12:52:11 GMT",
145145
"Content-Type" : "application/json; charset=utf-8"
146146
},
@@ -154,9 +154,9 @@
154154
"X-Content-Type-Options" : "nosniff",
155155
"MS-CV" : "ZurVbTAbz0WB4d7SmSUGpw.0",
156156
"retry-after" : "0",
157-
"Content-Length" : "265",
157+
"Content-Length" : "161",
158158
"StatusCode" : "200",
159-
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"arrInspectorPort\":0,\"handshakePort\":0,\"elapsedTimeMinutes\":0,\"hostname\":null,\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Starting\",\"teraflops\":0.0,\"error\":null}",
159+
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"elapsedTimeMinutes\":0,\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Starting\"}",
160160
"Date" : "Mon, 08 Feb 2021 12:52:21 GMT",
161161
"Content-Type" : "application/json; charset=utf-8"
162162
},
@@ -170,9 +170,9 @@
170170
"X-Content-Type-Options" : "nosniff",
171171
"MS-CV" : "Aha3/WElc0mxgbKjaqi2uQ.0",
172172
"retry-after" : "0",
173-
"Content-Length" : "265",
173+
"Content-Length" : "161",
174174
"StatusCode" : "200",
175-
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"arrInspectorPort\":0,\"handshakePort\":0,\"elapsedTimeMinutes\":0,\"hostname\":null,\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Starting\",\"teraflops\":0.0,\"error\":null}",
175+
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"elapsedTimeMinutes\":0,\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Starting\"}",
176176
"Date" : "Mon, 08 Feb 2021 12:52:31 GMT",
177177
"Content-Type" : "application/json; charset=utf-8"
178178
},
@@ -186,9 +186,9 @@
186186
"X-Content-Type-Options" : "nosniff",
187187
"MS-CV" : "ZUC4om/jaUm/G2yim3Oapg.0",
188188
"retry-after" : "0",
189-
"Content-Length" : "366",
189+
"Content-Length" : "333",
190190
"StatusCode" : "200",
191-
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"arrInspectorPort\":60356,\"handshakePort\":65392,\"elapsedTimeMinutes\":0,\"hostname\":\"2104844277-3af3769e-7249-47da-88bb-c1267945cf4c.remoterendering.vm.eastus2.mixedreality.azure.com\",\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Ready\",\"teraflops\":14.0,\"error\":null}",
191+
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"arrInspectorPort\":60356,\"handshakePort\":65392,\"elapsedTimeMinutes\":0,\"hostname\":\"2104844277-3af3769e-7249-47da-88bb-c1267945cf4c.remoterendering.vm.eastus2.mixedreality.azure.com\",\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Ready\",\"teraflops\":14.0}",
192192
"Date" : "Mon, 08 Feb 2021 12:52:41 GMT",
193193
"Content-Type" : "application/json; charset=utf-8"
194194
},
@@ -202,9 +202,9 @@
202202
"X-Content-Type-Options" : "nosniff",
203203
"MS-CV" : "NbN+vfHfw0SKGoG2PfxD7A.0",
204204
"retry-after" : "0",
205-
"Content-Length" : "366",
205+
"Content-Length" : "333",
206206
"StatusCode" : "200",
207-
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"arrInspectorPort\":60356,\"handshakePort\":65392,\"elapsedTimeMinutes\":0,\"hostname\":\"2104844277-3af3769e-7249-47da-88bb-c1267945cf4c.remoterendering.vm.eastus2.mixedreality.azure.com\",\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Ready\",\"teraflops\":14.0,\"error\":null}",
207+
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"arrInspectorPort\":60356,\"handshakePort\":65392,\"elapsedTimeMinutes\":0,\"hostname\":\"2104844277-3af3769e-7249-47da-88bb-c1267945cf4c.remoterendering.vm.eastus2.mixedreality.azure.com\",\"maxLeaseTimeMinutes\":4,\"size\":\"Standard\",\"status\":\"Ready\",\"teraflops\":14.0}",
208208
"Date" : "Mon, 08 Feb 2021 12:52:41 GMT",
209209
"Content-Type" : "application/json; charset=utf-8"
210210
},
@@ -220,9 +220,9 @@
220220
"X-Content-Type-Options" : "nosniff",
221221
"MS-CV" : "LLDPxR7PYUaRl61v9Uz1jg.0",
222222
"retry-after" : "0",
223-
"Content-Length" : "366",
223+
"Content-Length" : "333",
224224
"StatusCode" : "200",
225-
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"arrInspectorPort\":60356,\"handshakePort\":65392,\"elapsedTimeMinutes\":0,\"hostname\":\"2104844277-3af3769e-7249-47da-88bb-c1267945cf4c.remoterendering.vm.eastus2.mixedreality.azure.com\",\"maxLeaseTimeMinutes\":5,\"size\":\"Standard\",\"status\":\"Ready\",\"teraflops\":14.0,\"error\":null}",
225+
"Body" : "{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"arrInspectorPort\":60356,\"handshakePort\":65392,\"elapsedTimeMinutes\":0,\"hostname\":\"2104844277-3af3769e-7249-47da-88bb-c1267945cf4c.remoterendering.vm.eastus2.mixedreality.azure.com\",\"maxLeaseTimeMinutes\":5,\"size\":\"Standard\",\"status\":\"Ready\",\"teraflops\":14.0}",
226226
"Date" : "Mon, 08 Feb 2021 12:52:42 GMT",
227227
"Content-Type" : "application/json; charset=utf-8"
228228
},
@@ -240,7 +240,7 @@
240240
"retry-after" : "0",
241241
"Content-Length" : "381",
242242
"StatusCode" : "200",
243-
"Body" : "{\"sessions\":[{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"arrInspectorPort\":60356,\"handshakePort\":65392,\"elapsedTimeMinutes\":0,\"hostname\":\"2104844277-3af3769e-7249-47da-88bb-c1267945cf4c.remoterendering.vm.eastus2.mixedreality.azure.com\",\"maxLeaseTimeMinutes\":5,\"size\":\"Standard\",\"status\":\"Ready\",\"teraflops\":14.0,\"error\":null}]}",
243+
"Body" : "{\"sessions\":[{\"id\":\"asyncSessionTest\",\"creationTime\":\"2021-02-08T12:50:50.4612032+00:00\",\"arrInspectorPort\":60356,\"handshakePort\":65392,\"elapsedTimeMinutes\":0,\"hostname\":\"2104844277-3af3769e-7249-47da-88bb-c1267945cf4c.remoterendering.vm.eastus2.mixedreality.azure.com\",\"maxLeaseTimeMinutes\":5,\"size\":\"Standard\",\"status\":\"Ready\",\"teraflops\":14.0}]}",
244244
"Date" : "Mon, 08 Feb 2021 12:52:42 GMT",
245245
"Content-Type" : "application/json; charset=utf-8"
246246
},

0 commit comments

Comments
 (0)