From f21d4763148c60c053fa84705558c839a29bfd21 Mon Sep 17 00:00:00 2001 From: Artem Goncharov Date: Tue, 23 Sep 2025 11:13:06 +0200 Subject: [PATCH] fix: Fix the federation auth url for v4 --- openstack_sdk/src/auth/v4federation.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openstack_sdk/src/auth/v4federation.rs b/openstack_sdk/src/auth/v4federation.rs index 987f75d72..40f3f55ad 100644 --- a/openstack_sdk/src/auth/v4federation.rs +++ b/openstack_sdk/src/auth/v4federation.rs @@ -186,7 +186,7 @@ impl RestEndpoint for OauthAuthorizeRequest<'_> { /// Returns required API version fn api_version(&self) -> Option { - Some(ApiVersion::new(3, 0)) + Some(ApiVersion::new(4, 0)) } } @@ -236,7 +236,7 @@ impl RestEndpoint for OauthCallbackRequest<'_> { /// Returns required API version fn api_version(&self) -> Option { - Some(ApiVersion::new(3, 0)) + Some(ApiVersion::new(4, 0)) } }