We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 563fabe + f7f8a98 commit 763db3fCopy full SHA for 763db3f
CHANGES
@@ -1,6 +1,8 @@
1
v3.x.y - YYYY-MMM-DD (to be released)
2
-------------------------------------
3
4
+ - Fix initcol error message wording
5
+ [Issue #2731 - @877509395, @martinhsv]
6
- Tolerate other parameters after boundary in multipart C-T
7
[Issue #1900 - @martinhsv]
8
- Add DebugLog message for bad pattern in rx operator
src/actions/init_col.cc
@@ -46,7 +46,7 @@ bool InitCol::init(std::string *error) {
46
m_collection_key != "global" &&
47
m_collection_key != "resource") {
48
error->assign("Something wrong with initcol: collection must be " \
49
- "`ip' or `global'");
+ "`ip', `global' or `resource'");
50
return false;
51
}
52
0 commit comments