We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f26b6ea commit a27b41bCopy full SHA for a27b41b
ViewerRequest/integrationConfigProvider.js
@@ -20,7 +20,7 @@ exports.getConfig = async function (configUrl) {
20
resp.on('end', () => {
21
if (resp.statusCode == 200) {
22
var newCached = {
23
- expirationTime: new Date() + CacheTimeoutMS,
+ expirationTime: (Date.now()) + CacheTimeoutMS,
24
integrationConfig: data
25
};
26
GlobalCache = newCached;
ViewerRequest/queueitHelpers.js
@@ -1,4 +1,4 @@
1
-const CLOUDFRONT_SDK_VERSION ="1.2.0";
+const CLOUDFRONT_SDK_VERSION ="1.2.1";
2
const QueueIT = require("./sdk/queueit-knownuserv3-sdk.js");
3
exports.addKUPlatformVersion= function(redirectQueueUrl)
4
{
0 commit comments