@vizamodo/aws-sts-core 0.3.38 → 0.3.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/federation/login.js +2 -1
- package/package.json +1 -1
package/dist/federation/login.js
CHANGED
|
@@ -18,7 +18,8 @@ export async function buildFederationLoginUrl(input) {
|
|
|
18
18
|
region: input.region,
|
|
19
19
|
forceRefresh: input.forceRefresh
|
|
20
20
|
});
|
|
21
|
-
|
|
21
|
+
// TEMP DEBUG: force static key to verify cache behavior
|
|
22
|
+
const cacheKey = `aws-signin:test`;
|
|
22
23
|
const sessionJson = JSON.stringify(session);
|
|
23
24
|
const encoded = encodeURIComponent(sessionJson);
|
|
24
25
|
const SigninToken = await getCachedOrFetch(cacheKey, async () => {
|