Skip to content

Commit

Permalink
use aes for env variable setting
Browse files Browse the repository at this point in the history
  • Loading branch information
Zech-Hein committed Jan 22, 2025
1 parent a7159f1 commit 90c793e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2022, 2023 IBM Corporation and others.
* Copyright (c) 2022, 2025 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
Expand Down Expand Up @@ -66,7 +66,7 @@ public static void setUp() throws Exception {
// set the env for AUTO_USER_NAME and AUTO_USER_PASSWORD
Map<String, String> envMap = new HashMap<>();
envMap.put("AUTH_USER_NAME", "testUser");
envMap.put("AUTH_USER_PASSWORD", "testPassword");
envMap.put("AUTH_USER_PASSWORD", "{aes}ARCHov5Vfq7P9gus4lCT6rxK4kaQVJRkb4A7yuXUCylWinncR8zkPwHQrQ/6PTb2DTi6AHEUaYHu3sWqRZoUOUy7v7tvfRTWGrXaa3z96yyMmQQyrcMP9yiDCexZ3XMmHUrkYBdpYTyH59JcVxcr"); //testPassword
try {
FATSuite.configureEnvVariable(s, envMap);
} catch (Exception e) {
Expand Down

0 comments on commit 90c793e

Please sign in to comment.