Skip to content

Commit

Permalink
feat(wxcc): set allowMultiLogin to false by default (#4094)
Browse files Browse the repository at this point in the history
Co-authored-by: parv_gour <parv_gour@PAGOUR-M-D8B2>
  • Loading branch information
pagour98 and parv_gour authored Feb 12, 2025
1 parent 88030b9 commit 6d0eb73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/@webex/plugin-cc/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {LOGGER} from '@webex/calling';

export default {
cc: {
allowMultiLogin: true,
allowMultiLogin: false,
allowAutomatedRelogin: true,
clientType: 'WebexCCSDK',
isKeepAliveEnabled: false,
Expand Down
2 changes: 1 addition & 1 deletion packages/@webex/plugin-cc/test/unit/spec/cc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ describe('webex.cc', () => {
force: true,
isKeepAliveEnabled: false,
clientType: 'WebexCCSDK',
allowMultiLogin: true,
allowMultiLogin: false,
},
});
expect(configSpy).toHaveBeenCalled();
Expand Down

0 comments on commit 6d0eb73

Please sign in to comment.