Skip to content

Commit e51299f

Browse files
committed
chore: fix smoketests
1 parent 9f5e64c commit e51299f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

crates/sts/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
//! use multistore_sts::route_handler::StsRouterExt;
1313
//!
1414
//! let router = Router::new()
15-
//! .with_sts(config, jwks_cache, token_key);
15+
//! .with_sts("/.sts", config, jwks_cache, token_key);
1616
//! ```
1717
//!
1818
//! # Flow

tests/smoke/test_smoke.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
def assume_role(role_arn: str, oidc_token: str) -> dict:
2222
"""Assume a role via the STS proxy and return parsed credentials."""
2323
resp = requests.get(
24-
DEPLOY_URL,
24+
f"{DEPLOY_URL}/.sts",
2525
params={
2626
"Action": "AssumeRoleWithWebIdentity",
2727
"RoleArn": role_arn,

0 commit comments

Comments
 (0)