-
Notifications
You must be signed in to change notification settings - Fork 288
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(cmd-socketio-server): circular dependency fix and minor fixe…
…s for verifier tests Fix circular dependency between routing-interface and VerifierFactory, add default validator config used by ValidatorAuthentication, type fixes in Verifier, format some files according to standard. Closes: #1596 Signed-off-by: Michal Bajer <[email protected]>
- Loading branch information
Showing
6 changed files
with
47 additions
and
96 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
packages/cactus-cmd-socketio-server/src/main/typescript/common/core/config/default.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* | ||
* Copyright 2021 Hyperledger Cactus Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* NOTE! | ||
* This configuration file is overwritten in the validator. | ||
* Used by ../verifier/ValidatorAuthentication.ts | ||
*/ | ||
|
||
export const config = { | ||
logLevel: "silent", | ||
validatorKeyPath: "key.pem", | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters