mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
9ac016127d
[web] scripts: increase mongo query timeouts by default (30s -> 5min) GitOrigin-RevId: bdd1a504799ac1d42c52c3966b1072f721398e12
37 lines
959 B
JavaScript
37 lines
959 B
JavaScript
process.env.MONGO_SOCKET_TIMEOUT = '300000'
|
|
const { waitForDb } = require('../app/src/infrastructure/mongodb')
|
|
const SAMLUserIdMigrationHandler = require('../modules/overleaf-integration/app/src/SAML/SAMLUserIdMigrationHandler')
|
|
|
|
const institutionId = parseInt(process.argv[2])
|
|
if (isNaN(institutionId)) throw new Error('No institution id')
|
|
const emitUsers = process.argv.includes('--emit-users')
|
|
|
|
console.log(
|
|
'Remove SSO linking for users not migrated at institution:',
|
|
institutionId
|
|
)
|
|
|
|
waitForDb()
|
|
.then(main)
|
|
.catch(error => {
|
|
console.error(error)
|
|
process.exit(1)
|
|
})
|
|
|
|
async function main() {
|
|
const result = await SAMLUserIdMigrationHandler.promises.removeNotMigrated(
|
|
institutionId
|
|
)
|
|
|
|
if (emitUsers) {
|
|
console.log(
|
|
`\nRemoved: ${result.success}\nFailed to remove: ${result.failed}`
|
|
)
|
|
}
|
|
|
|
console.log(
|
|
`\nRemoved: ${result.success.length}\nFailed to remove: ${result.failed.length}`
|
|
)
|
|
|
|
process.exit()
|
|
}
|