bulltrackers-module 1.0.171 → 1.0.173
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.MD +3 -179
- package/functions/computation-system/controllers/computation_controller.js +211 -0
- package/functions/computation-system/helpers/computation_manifest_builder.js +15 -20
- package/functions/computation-system/helpers/computation_pass_runner.js +68 -35
- package/functions/computation-system/helpers/orchestration_helpers.js +185 -717
- package/functions/computation-system/layers/math_primitives.js +747 -0
- package/functions/task-engine/helpers/update_helpers.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
|
@@ -15,7 +15,7 @@ async function lookupUsernames(cids, { logger, headerManager, proxyManager }, co
|
|
|
15
15
|
if (!cids?.length) return [];
|
|
16
16
|
logger.log('INFO', `[lookupUsernames] Looking up usernames for ${cids.length} CIDs.`);
|
|
17
17
|
|
|
18
|
-
// --- Set concurrency to 1 because appscript gets really
|
|
18
|
+
// --- Set concurrency to 1 because appscript gets really fucked up with undocumented rate limits if we try spam it concurrently, a shame but that's life. DO NOT CHANGE THIS
|
|
19
19
|
const limit = pLimit(1);
|
|
20
20
|
const { USERNAME_LOOKUP_BATCH_SIZE, ETORO_API_RANKINGS_URL } = config;
|
|
21
21
|
const batches = [];
|
package/index.js
CHANGED
|
@@ -36,7 +36,7 @@ const { build: buildManifestFunc } = require('./functions/computation-system/hel
|
|
|
36
36
|
const computationSystem = { runComputationPass : require('./functions/computation-system/helpers/computation_pass_runner') .runComputationPass,
|
|
37
37
|
dataLoader : require('./functions/computation-system/utils/data_loader'),
|
|
38
38
|
computationUtils : require('./functions/computation-system/utils/utils'),
|
|
39
|
-
buildManifest : buildManifestFunc
|
|
39
|
+
buildManifest : buildManifestFunc
|
|
40
40
|
};
|
|
41
41
|
|
|
42
42
|
// API
|