This is an automated email from the ASF dual-hosted git repository.
gehafearless pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pegasus.git
The following commit(s) were added to refs/heads/master by this push:
new 1129607e4 fix(configs): add missing namespace in group validator of
flags (#1905)
1129607e4 is described below
commit 1129607e43c7bd1d804390f5268952babd1a4939
Author: Dan Wang <[email protected]>
AuthorDate: Mon Feb 19 14:03:21 2024 +0800
fix(configs): add missing namespace in group validator of flags (#1905)
#1904
---
src/replica/replica_stub.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/replica/replica_stub.cpp b/src/replica/replica_stub.cpp
index 90ceb4dac..70862d42e 100644
--- a/src/replica/replica_stub.cpp
+++ b/src/replica/replica_stub.cpp
@@ -329,7 +329,7 @@ DSN_DEFINE_group_validator(encrypt_data_at_rest_pre_check,
[](std::string &messa
DSN_DEFINE_group_validator(encrypt_data_at_rest_with_kms_url, [](std::string
&message) -> bool {
#ifndef MOCK_TEST
- if (FLAGS_encrypt_data_at_rest && utils::is_empty(FLAGS_hadoop_kms_url)) {
+ if (FLAGS_encrypt_data_at_rest &&
dsn::utils::is_empty(FLAGS_hadoop_kms_url)) {
message = fmt::format("[security] hadoop_kms_url should not be empty
when [pegasus.server] "
"encrypt_data_at_rest is enabled.");
return false;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]