changed some stuff

This commit is contained in:
Bojan Kucera 2025-06-09 18:12:41 -04:00
parent 8a588816c4
commit b896d3f698
2 changed files with 2 additions and 1 deletions

View file

@ -35,7 +35,7 @@ export const proxyProvider: ProviderConfig = {
const result = await batchProcessor.processItems({
items: proxies,
batchSize: parseInt(process.env.PROXY_BATCH_SIZE || '200'),
totalDelayMs: parseInt(process.env.PROXY_VALIDATION_HOURS || '8') * 60 * 60 * 1000,
totalDelayMs: parseInt(process.env.PROXY_VALIDATION_HOURS || '4') * 60 * 60 * 1000 ,
jobNamePrefix: 'proxy',
operation: 'check-proxy',
service: 'proxy',

View file

@ -2,6 +2,7 @@
export type HttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
export interface ProxyInfo {
source?: string;
protocol: 'http' | 'https' | 'socks4' | 'socks5';
host: string;
port: number;