Skip to content

Commit

Permalink
set default pipelineBus to v1
Browse files Browse the repository at this point in the history
  • Loading branch information
kaisecheng committed Nov 8, 2024
1 parent 9ad33e2 commit d6c1fd8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public interface PipelineBus {
* @return a new pipeline bus
*/
static PipelineBus create() {
final String pipelineBusImplementation = System.getProperty("logstash.pipelinebus.implementation", "v2");
final String pipelineBusImplementation = System.getProperty("logstash.pipelinebus.implementation", "v1");
switch (pipelineBusImplementation) {
case "v1": return new PipelineBusV1();
case "v2": return new PipelineBusV2();
Expand Down

0 comments on commit d6c1fd8

Please sign in to comment.