File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed
components/core/src/clp_s/log_converter Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,14 @@ constexpr std::string_view cS3Auth{"s3"};
3838 std::vector<std::string>& path_destination
3939) -> bool;
4040
41+ /* *
42+ * Validates and populates network authorization options.
43+ * @param auth_method
44+ * @param auth
45+ * @throws std::invalid_argument if the authorization option is invalid
46+ */
47+ void validate_network_auth (std::string_view auth_method, NetworkAuthOption& auth);
48+
4149auto read_paths_from_file (
4250 std::string const & input_path_list_file_path,
4351 std::vector<std::string>& path_destination
@@ -73,12 +81,6 @@ auto read_paths_from_file(
7381 return true ;
7482}
7583
76- /* *
77- * Validates and populates network authorization options.
78- * @param auth_method
79- * @param network_auth
80- * @throws std::invalid_argument if the authorization option is invalid
81- */
8284void validate_network_auth (std::string_view auth_method, NetworkAuthOption& auth) {
8385 if (cS3Auth == auth_method) {
8486 auth.method = AuthMethod::S3PresignedUrlV4;
You can’t perform that action at this time.
0 commit comments