Merge branch 'dillon/122-1688-po-automation-project-pusher' into vapor/development

This commit is contained in:
Dillon Ngo
2026-01-17 22:12:27 +08:00
2 changed files with 5 additions and 7 deletions
Vendored
+2 -2
View File
@@ -37,7 +37,7 @@ pipeline {
break
case "vapor/staging":
pusherKeyCredId = 'pusher-staging-key'
pusherCluster = 'ap2'
pusherCluster = 'ap1'
git(
url: 'https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git',
credentialsId: 'gitlab-jenkins-localhost',
@@ -46,7 +46,7 @@ pipeline {
break
case "vapor/development":
pusherKeyCredId = 'pusher-dev-key'
pusherCluster = 'mt1'
pusherCluster = 'ap1'
git(
url: 'https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git',
credentialsId: 'gitlab-jenkins-localhost',
+3 -5
View File
@@ -37,15 +37,13 @@ import Pusher from 'pusher-js';
window.Pusher = Pusher;
console.log("PUSHER KEY:", process.env.MIX_PUSHER_APP_KEY);
// console.log("PUSHER KEY:", process.env.MIX_PUSHER_APP_KEY);
console.log("PUSHER CLUSTER:", process.env.MIX_PUSHER_APP_CLUSTER);
window.Echo = new Echo({
broadcaster: 'pusher',
key: '967971084bece7f43e1a',
cluster: 'ap1',
// key: process.env.MIX_PUSHER_APP_KEY,
// cluster: process.env.MIX_PUSHER_APP_CLUSTER,
key: process.env.MIX_PUSHER_APP_KEY,
cluster: process.env.MIX_PUSHER_APP_CLUSTER,
forceTLS: true
});