Merge pull request #2732 from martinhsv/v3/master

Fix initcol error message wording
This commit is contained in:
martinhsv 2022-04-26 21:37:41 -04:00 committed by GitHub
commit 763db3f63a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,8 @@
v3.x.y - YYYY-MMM-DD (to be released)
-------------------------------------
- Fix initcol error message wording
[Issue #2731 - @877509395, @martinhsv]
- Tolerate other parameters after boundary in multipart C-T
[Issue #1900 - @martinhsv]
- Add DebugLog message for bad pattern in rx operator

View File

@ -46,7 +46,7 @@ bool InitCol::init(std::string *error) {
m_collection_key != "global" &&
m_collection_key != "resource") {
error->assign("Something wrong with initcol: collection must be " \
"`ip' or `global'");
"`ip', `global' or `resource'");
return false;
}