|
|
@@ -1,6 +1,10 @@
|
|
|
const Path = require('node:path')
|
|
|
const os = require('node:os')
|
|
|
+const http = require('node:http')
|
|
|
+const https = require('node:https')
|
|
|
|
|
|
+http.globalAgent.keepAlive = false
|
|
|
+https.globalAgent.keepAlive = false
|
|
|
const isPreEmptible = os.hostname().includes('pre-emp')
|
|
|
|
|
|
module.exports = {
|