Skip to content

Commit 57f2917

Browse files
committed
Reapply "Fix estimation endpoint take 3"
This reverts commit 6ea56b5.
1 parent 6650385 commit 57f2917

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

graphdatascience/session/aura_api.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,9 @@ def estimate_size(
314314
"instance_type": "dsenterprise",
315315
}
316316

317-
response = self._request_session.post(f"{self._base_uri}/{AuraApi.API_VERSION}/instances/sizing", json=data)
317+
response = self._request_session.post(
318+
f"{self._base_uri}/{AuraApi.API_VERSION}/graph-analytics/sessions/sizing", json=data
319+
)
318320
self._check_resp(response)
319321

320322
return EstimationDetails.from_json(response.json()["data"])

0 commit comments

Comments
 (0)