Skip to content

Commit bca161c

Browse files
authored
chore[NodeFinder]: remove node 11 from TMP_EXCLUDED_NODES (#3981)
1 parent 2b6e3a6 commit bca161c

File tree

1 file changed

+2
-2
lines changed
  • packages/grid_client/src/primitives

1 file changed

+2
-2
lines changed

packages/grid_client/src/primitives/nodes.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -373,9 +373,9 @@ class Nodes {
373373
let nodes: NodeInfo[] = [];
374374
url = url || this.proxyURL;
375375
/*
376-
this is tmp solution to exclude node 11 and 259 on dev net only and should be removed when the issue is fixed; tracked in https://github.com/threefoldtech/tfgrid-sdk-ts/issues/3855
376+
this is tmp solution to exclude node 259 on dev net only and should be removed when the issue is fixed; tracked in https://github.com/threefoldtech/tfgrid-sdk-ts/issues/3855
377377
*/
378-
const TMP_EXCLUDED_NODES = [11, 259];
378+
const TMP_EXCLUDED_NODES = [259];
379379
if (url.includes("dev"))
380380
options.nodeExclude = options.nodeExclude ? [...options.nodeExclude, ...TMP_EXCLUDED_NODES] : TMP_EXCLUDED_NODES;
381381
options.features = this.getFeaturesFromFilters(options);

0 commit comments

Comments
 (0)