Skip to content

Commit

Permalink
ProxySQL currently supports MD5, CLEAR TEXT and SCRAM-SHA-256 auth me…
Browse files Browse the repository at this point in the history
…thod
  • Loading branch information
rahim-kanji committed Sep 20, 2024
1 parent e3c13fb commit 937a040
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/PgSQL_Thread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2057,7 +2057,7 @@ char** PgSQL_Threads_Handler::get_variables_list() {
// initialize VariablesPointers_int
// it is safe to do it here because get_variables_list() is the first function called during start time
if (VariablesPointers_int.size() == 0) {
VariablesPointers_int["authentication_method"] = make_tuple(&variables.authentication_method, 0, 4, false);
VariablesPointers_int["authentication_method"] = make_tuple(&variables.authentication_method, 1, 3, false);
// Monitor variables
VariablesPointers_int["monitor_history"] = make_tuple(&variables.monitor_history, 1000, 7 * 24 * 3600 * 1000, false);

Expand Down

0 comments on commit 937a040

Please sign in to comment.