Skip to content

Commit

Permalink
chore: fix typo in preprocessing user/pwd (was: prerocessing) (#815)
Browse files Browse the repository at this point in the history
  • Loading branch information
corneliusroemer authored Jan 23, 2024
1 parent 3773d3d commit 7857907
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions kubernetes/loculus/templates/keycloak-config-map.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ data:
}
},
{
"username": "dummy_prerocessing_pipeline",
"username": "dummy_preprocessing_pipeline",
"enabled": true,
"email": "dummy_prerocessing_pipeline@keycloak.org",
"email": "dummy_preprocessing_pipeline@keycloak.org",
"firstName": "Dummy",
"lastName": "Preprocessing",
"credentials": [
{
"type": "password",
"value": "dummy_prerocessing_pipeline"
"value": "dummy_preprocessing_pipeline"
}
],
"realmRoles": [
Expand Down
4 changes: 2 additions & 2 deletions preprocessing/dummy/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
parser.add_argument("--withWarnings", action="store_true", help="Add warnings to processed data.")
parser.add_argument("--maxSequences", type=int, help="Max number of sequence entry versions to process.")
parser.add_argument("--keycloak-host", type=str, default="http://172.0.0.1:8083", help="Host address of Keycloak")
parser.add_argument("--keycloak-user", type=str, default="dummy_prerocessing_pipeline",
parser.add_argument("--keycloak-user", type=str, default="dummy_preprocessing_pipeline",
help="Keycloak user to use for authentication")
parser.add_argument("--keycloak-password", type=str, default="dummy_prerocessing_pipeline",
parser.add_argument("--keycloak-password", type=str, default="dummy_preprocessing_pipeline",
help="Keycloak password to use for authentication")
parser.add_argument("--keycloak-token-path", type=str, default="/realms/loculusRealm/protocol/openid-connect/token", help="Path to Keycloak token endpoint")

Expand Down
4 changes: 2 additions & 2 deletions preprocessing/nextclade/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
help="Host address of the Loculus backend",
)
parser.add_argument("--keycloak-host", type=str, default="http://172.0.0.1:8083", help="Host address of Keycloak")
parser.add_argument("--keycloak-user", type=str, default="dummy_prerocessing_pipeline",
parser.add_argument("--keycloak-user", type=str, default="dummy_preprocessing_pipeline",
help="Keycloak user to use for authentication")
parser.add_argument("--keycloak-password", type=str, default="dummy_prerocessing_pipeline",
parser.add_argument("--keycloak-password", type=str, default="dummy_preprocessing_pipeline",
help="Keycloak password to use for authentication")
parser.add_argument("--keycloak-token-path", type=str, default="/realms/loculusRealm/protocol/openid-connect/token",
help="Path to Keycloak token endpoint")
Expand Down
4 changes: 2 additions & 2 deletions website/tests/util/preprocessingPipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ async function submit(preprocessingOptions: PreprocessingOptions[]) {
}

async function getJwtTokenForPreprocessingPipeline(
username: string = 'dummy_prerocessing_pipeline',
password: string = 'dummy_prerocessing_pipeline',
username: string = 'dummy_preprocessing_pipeline',
password: string = 'dummy_preprocessing_pipeline',
): Promise<string> {
const token = await getToken(username, password);

Expand Down

0 comments on commit 7857907

Please sign in to comment.