(envSecret)
| 649 | } |
| 650 | |
| 651 | _syncEnvNodeSecretToStore(envSecret) { |
| 652 | const envVersion = parseNodeSecretVersion(process.env.A2A_NODE_SECRET_VERSION || process.env.EVOMAP_NODE_SECRET_VERSION); |
| 653 | this._setNodeSecretState({ |
| 654 | secret: envSecret, |
| 655 | version: envVersion ? String(envVersion) : '', |
| 656 | source: 'env_seed', |
| 657 | envSuppressed: '', |
| 658 | }); |
| 659 | this._clearEnvSecretSuppression(); |
| 660 | } |
| 661 | |
| 662 | _setNodeSecretState({ secret = '', version = '', source = '', envSuppressed = '' } = {}) { |
| 663 | if (this.store && typeof this.store.setNodeSecretState === 'function') { |
no test coverage detected