Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libvmod-selector
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
uplex-varnish
libvmod-selector
Commits
423aee8a
Commit
423aee8a
authored
Jul 07, 2018
by
Geoff Simmons
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix the error message when .create_stats() is called outside vcl_init.
parent
53e6f5e1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
stats.vtc
src/tests/stats.vtc
+1
-1
vmod_selector.c
src/vmod_selector.c
+1
-1
No files found.
src/tests/stats.vtc
View file @
423aee8a
...
...
@@ -226,6 +226,6 @@ client c1 {
logexpect l1 -v v1 -d 1 -g vxid -q "VCL_Error" {
expect 0 * Begin req
expect * = VCL_Error {^vmod selector failure: n\.
add
\(\) may only be called in vcl_init$}
expect * = VCL_Error {^vmod selector failure: n\.
create_stats
\(\) may only be called in vcl_init$}
expect * = End
} -run
src/vmod_selector.c
View file @
423aee8a
...
...
@@ -744,7 +744,7 @@ vmod_set_create_stats(VRT_CTX, struct vmod_selector_set *set,
CHECK_OBJ_NOTNULL
(
ctx
,
VRT_CTX_MAGIC
);
CHECK_OBJ_NOTNULL
(
set
,
VMOD_SELECTOR_SET_MAGIC
);
if
((
ctx
->
method
&
VCL_MET_INIT
)
==
0
)
{
VFAIL
(
ctx
,
"%s.
add
() may only be called in vcl_init"
,
VFAIL
(
ctx
,
"%s.
create_stats
() may only be called in vcl_init"
,
set
->
vcl_name
);
return
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment