Skip to content

Commit 763db3f

Browse files
authored
Merge pull request #2732 from martinhsv/v3/master
Fix initcol error message wording
2 parents 563fabe + f7f8a98 commit 763db3f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
v3.x.y - YYYY-MMM-DD (to be released)
22
-------------------------------------
33

4+
- Fix initcol error message wording
5+
[Issue #2731 - @877509395, @martinhsv]
46
- Tolerate other parameters after boundary in multipart C-T
57
[Issue #1900 - @martinhsv]
68
- Add DebugLog message for bad pattern in rx operator

src/actions/init_col.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ bool InitCol::init(std::string *error) {
4646
m_collection_key != "global" &&
4747
m_collection_key != "resource") {
4848
error->assign("Something wrong with initcol: collection must be " \
49-
"`ip' or `global'");
49+
"`ip', `global' or `resource'");
5050
return false;
5151
}
5252

0 commit comments

Comments
 (0)