Compare commits

..

No commits in common. "2dcdbf9c376d0d1118a3510569c1195bdc1de354" and "605242b399198299288ad73f6edb89f0ddb721df" have entirely different histories.

5 changed files with 4 additions and 15 deletions

View File

@ -316,10 +316,6 @@ module.exports = {
},
fetchAfter: [1, 'week'],
missingDateLimit: 3,
memorySampling: {
enabled: false,
snapshotIntervals: [],
},
media: {
path: './media',
thumbnailSize: 320, // width for 16:9 will be exactly 576px

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "traxxx",
"version": "1.204.3",
"version": "1.204.2",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "traxxx",
"version": "1.204.3",
"version": "1.204.2",
"license": "ISC",
"dependencies": {
"@casl/ability": "^5.2.2",

View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.204.3",
"version": "1.204.2",
"description": "All the latest porn releases in one place",
"main": "src/app.js",
"scripts": {

View File

@ -1,6 +1,5 @@
'use strict';
const config = require('config');
const util = require('util');
const log = require('why-is-node-running');
const Inspector = require('inspector-api');
@ -85,7 +84,7 @@ async function startMemorySample(snapshotTriggers = []) {
async function init() {
try {
if (argv.sampleMemory) {
await startMemorySample(config.memorySampling.snapshotIntervals);
await startMemorySample([1000]);
}
if (argv.logActive) {

View File

@ -247,12 +247,6 @@ const { argv } = yargs
type: 'boolean',
default: process.env.NODE_ENV === 'development',
})
.option('sampleMemory', {
alias: 'memory',
describe: 'Take memory allocation samples, and snapshots at configured intervals',
type: 'boolean',
default: config.memorySampling.enabled,
})
.option('update-search', {
describe: 'Update search documents for all releases.',
type: 'boolean',