removed drain

This commit is contained in:
Bojan Kucera 2025-06-09 19:08:28 -04:00
parent b896d3f698
commit c66889889e
2 changed files with 17 additions and 1 deletions

View file

@ -22,7 +22,6 @@ export const proxyProvider: ProviderConfig = {
const { proxyService } = await import('./proxy.tasks');
const { queueManager } = await import('../services/queue.service');
await queueManager.drainQueue();
const proxies = await proxyService.fetchProxiesFromSources();
if (proxies.length === 0) {

View file

@ -181,6 +181,21 @@
"typescript": "^5.3.0",
},
},
"libs/data-adjustments": {
"name": "@stock-bot/data-adjustments",
"version": "1.0.0",
"dependencies": {
"@stock-bot/logger": "*",
"@stock-bot/types": "*",
},
"devDependencies": {
"bun-types": "^1.1.12",
"typescript": "^5.4.5",
},
"peerDependencies": {
"typescript": "^5.0.0",
},
},
"libs/data-frame": {
"name": "@stock-bot/data-frame",
"version": "1.0.0",
@ -766,6 +781,8 @@
"@stock-bot/config": ["@stock-bot/config@workspace:libs/config"],
"@stock-bot/data-adjustments": ["@stock-bot/data-adjustments@workspace:libs/data-adjustments"],
"@stock-bot/data-frame": ["@stock-bot/data-frame@workspace:libs/data-frame"],
"@stock-bot/data-service": ["@stock-bot/data-service@workspace:apps/data-service"],