Skip to content

Commit

Permalink
[irods/irods#7191] Add Rocky Linux to platforms.
Browse files Browse the repository at this point in the history
  • Loading branch information
korydraughn authored and alanking committed Oct 20, 2023
1 parent 510f53e commit d7fd689
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions irods_consortium_continuous_integration_build_hook.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ def install_os_specific_dependencies():
'Centos': install_os_specific_dependencies_yum,
'Debian gnu_linux': install_os_specific_dependencies_apt,
'Opensuse ': install_os_specific_dependencies_yum,
'Rocky linux': install_os_specific_dependencies_yum,
'Ubuntu': install_os_specific_dependencies_apt
}
try:
Expand Down
4 changes: 2 additions & 2 deletions sample_configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"instance_name": "irods_rule_engine_plugin-audit_amqp-instance",
"plugin_name": "irods_rule_engine_plugin-audit_amqp",
"plugin_specific_configuration" : {
"pep_regex_to_match" : "audit_.*",
"amqp_topic" : "amq.topic",
"amqp_location" : "localhost:5672",
"amqp_topic" : "amq.topic",
"pep_regex_to_match" : "pep_.+"
}
}
]
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ namespace irods::plugin::rule_engine::audit_amqp
const auto pep_regex_flavor = std::regex::ECMAScript;

// NOLINTBEGIN(cert-err58-cpp, cppcoreguidelines-avoid-non-const-global-variables)
const std::string_view default_pep_regex_to_match{"audit_.*"};
const std::string_view default_pep_regex_to_match{"pep_.+"};
const std::string_view default_amqp_url{"localhost:5672/irods_audit_messages"};

const fs::path default_log_path_prefix{fs::temp_directory_path()};
Expand Down

0 comments on commit d7fd689

Please sign in to comment.