Skip to content

Commit b77c792

Browse files
committed
fix lint
1 parent 3c0aedb commit b77c792

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

apisix/plugins/elasticsearch-logger.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,8 @@ function _M.log(conf, ctx)
282282
return send_to_elasticsearch(conf, entries)
283283
end
284284

285-
batch_processor_manager:add_entry_to_new_processor(conf, entry, ctx, process, max_pending_entries)
285+
batch_processor_manager:add_entry_to_new_processor(conf, entry, ctx,
286+
process, max_pending_entries)
286287
end
287288

288289

apisix/plugins/google-cloud-logging.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,8 @@ function _M.log(conf, ctx)
267267
return send_to_google(oauth, entries)
268268
end
269269

270-
batch_processor_manager:add_entry_to_new_processor(conf, entry, ctx, process, max_pending_entries)
270+
batch_processor_manager:add_entry_to_new_processor(conf, entry, ctx,
271+
process, max_pending_entries)
271272
end
272273

273274

apisix/plugins/splunk-hec-logging.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,8 @@ function _M.log(conf, ctx)
188188
return send_to_splunk(conf, entries)
189189
end
190190

191-
batch_processor_manager:add_entry_to_new_processor(conf, entry, ctx, process, max_pending_entries)
191+
batch_processor_manager:add_entry_to_new_processor(conf, entry, ctx,
192+
process, max_pending_entries)
192193
end
193194

194195

apisix/plugins/tencent-cloud-cls.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,8 @@ function _M.log(conf, ctx)
148148
return sdk:send_to_cls(entries)
149149
end
150150

151-
batch_processor_manager:add_entry_to_new_processor(conf, entry, ctx, process, max_pending_entries)
151+
batch_processor_manager:add_entry_to_new_processor(conf, entry, ctx,
152+
process, max_pending_entries)
152153
end
153154

154155

0 commit comments

Comments
 (0)