Skip to content

Commit be20c9d

Browse files
committed
api/v2/reload: update references to flb_signal_reload to flb_reload_signal_reload.
Signed-off-by: Phillip Adair Stewart Whelan <[email protected]>
1 parent cf0f65e commit be20c9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/http_server/api/v2/reload.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ static void handle_reload_request(mk_request_t *request, struct flb_config *conf
6767
http_status = 400;
6868
}
6969
else {
70-
flb_signal_reload(config);
70+
flb_reload_signal_reload(config);
7171
msgpack_pack_str(&mp_pck, 4);
7272
msgpack_pack_str_body(&mp_pck, "done", 4);
7373
msgpack_pack_str(&mp_pck, 6);
@@ -91,7 +91,7 @@ static void handle_reload_request(mk_request_t *request, struct flb_config *conf
9191
http_status = 400;
9292
}
9393
else {
94-
ret = flb_signal_reload(config);
94+
ret = flb_reload_signal_reload(config);
9595
if (ret != 0) {
9696
mk_http_status(request, 500);
9797
mk_http_done(request);

0 commit comments

Comments
 (0)