Skip to content

Commit

Permalink
[Feature][Connector-V2]remove checkstyle:MagicNumber(apache#2553)
Browse files Browse the repository at this point in the history
  • Loading branch information
iture123 committed Sep 27, 2022
1 parent c878685 commit 5cba46f
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ public class ElasticsearchSourceToConsoleIT extends FlinkContainer {

private ElasticsearchContainer container;

@SuppressWarnings({"checkstyle:MagicNumber", "checkstyle:Indentation"})
@BeforeEach
public void startElasticsearchContainer() throws InterruptedException {
container = new ElasticsearchContainer(DockerImageName.parse("elasticsearch:6.8.23").asCompatibleSubstituteFor("docker.elastic.co/elasticsearch/elasticsearch"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ public class FakeSourceToElasticsearchIT extends FlinkContainer {

private ElasticsearchContainer container;

@SuppressWarnings({"checkstyle:MagicNumber", "checkstyle:Indentation"})
@BeforeEach
public void startElasticsearchContainer() throws InterruptedException {
container = new ElasticsearchContainer(DockerImageName.parse("elasticsearch:6.8.23").asCompatibleSubstituteFor("docker.elastic.co/elasticsearch/elasticsearch")).withNetwork(NETWORK).withNetworkAliases("elasticsearch").withLogConsumer(new Slf4jLogConsumer(LOGGER));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ public class ElasticsearchSourceToConsoleIT extends SparkContainer {

private ElasticsearchContainer container;

@SuppressWarnings({"checkstyle:MagicNumber", "checkstyle:Indentation"})
@BeforeEach
public void startElasticsearchContainer() throws InterruptedException {
container = new ElasticsearchContainer(DockerImageName.parse("elasticsearch:6.8.23").asCompatibleSubstituteFor("docker.elastic.co/elasticsearch/elasticsearch")).withNetwork(NETWORK).withNetworkAliases("elasticsearch").withLogConsumer(new Slf4jLogConsumer(LOGGER));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ public class FakeSourceToElasticsearchIT extends SparkContainer {

private ElasticsearchContainer container;

@SuppressWarnings({"checkstyle:MagicNumber", "checkstyle:Indentation"})
@BeforeEach
public void startElasticsearchContainer() throws InterruptedException {
container = new ElasticsearchContainer(DockerImageName.parse("elasticsearch:6.8.23").asCompatibleSubstituteFor("docker.elastic.co/elasticsearch/elasticsearch")).withNetwork(NETWORK).withNetworkAliases("elasticsearch").withLogConsumer(new Slf4jLogConsumer(LOGGER));
Expand Down

0 comments on commit 5cba46f

Please sign in to comment.