Skip to content

Commit

Permalink
Update reconfigSPIdBlacklistString to include any node > 75% storage …
Browse files Browse the repository at this point in the history
…utilization (#4160)

* Update reconfigSPIdBlacklistString

* Lint
  • Loading branch information
dmanjunath committed Oct 25, 2022
1 parent 41045a1 commit 9cdd5b4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions creator-node/src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -799,10 +799,11 @@ const config = convict({
default: ''
},
reconfigSPIdBlacklistString: {
doc: 'A comma separated list of sp ids of nodes to not reconfig onto. Used to create the `reconfigSPIdBlacklist` number[] config. Defaulted to prod foundation nodes.',
doc: 'A comma separated list of sp ids of nodes to not reconfig onto. Used to create the `reconfigSPIdBlacklist` number[] config. Defaulted to prod foundation nodes and any node > 75% storage utilization.',
format: String,
env: 'reconfigSPIdBlacklistString',
default: '1,2,3,4,27'
default:
'1,2,3,4,7,12,13,14,15,16,19,27,28,33,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,63,64,65'
}
/**
* unsupported options at the moment
Expand Down

0 comments on commit 9cdd5b4

Please sign in to comment.