Skip to content

Commit

Permalink
Merge branch '130-fix-bug-failing-to-read-password-file' into 'master'
Browse files Browse the repository at this point in the history
Issue #130: Fix incorrect file path for password file

Closes #130

See merge request it1901/groups-2023/gr2338/gr2338!122
  • Loading branch information
grannes1000 committed Nov 9, 2023
2 parents 3546ce0 + b6dab22 commit e6d9535
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*/
public final class PasswordHandler {

private static final String PASSWORD_FILE = "/vendmachtrack/core/util/password.txt";
private static final String PASSWORD_FILE = "password.txt";
private static final int ARGON2_ITERATIONS = 10;
private static final int ARGON2_MEMORY = 65536;
private static final int ARGON2_PARALLELISM = 1;
Expand Down

0 comments on commit e6d9535

Please sign in to comment.