Skip to content

Commit

Permalink
rename field to improve semantics
Browse files Browse the repository at this point in the history
Signed-off-by: Atanas Atanasov <[email protected]>
  • Loading branch information
ata-nas committed Nov 13, 2024
1 parent 0945184 commit 2c2f9c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions suites/src/main/java/com/hedera/block/suites/BaseSuite.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public abstract class BaseSuite {
* Dotenv instance to load the environment variables from the .env file that
* is inside the build root of the :server.
*/
protected static final Dotenv DOTENV = Dotenv.configure()
protected static final Dotenv SERVER_DOTENV = Dotenv.configure()
.directory("../server/build/docker")
.filename(".env")
.load();
Expand Down Expand Up @@ -148,6 +148,6 @@ protected static Configuration loadSimulatorDefaultConfiguration() throws IOExce
* @return the version of the Block Node server as a string
*/
private static String getBlockNodeVersion() {
return DOTENV.get("VERSION");
return SERVER_DOTENV.get("VERSION");
}
}

0 comments on commit 2c2f9c8

Please sign in to comment.