Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 17 additions & 4 deletions .github/workflows/ci_build_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ jobs:
needs:
- workflow_approval
steps:
- uses: actions/checkout@v3
- name: Setup Action
uses: actions/checkout@v3
with:
ref: ${{github.event.pull_request.head.sha}}
- name: run fossa anlyze and create report
run: |
curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install-latest.sh | bash
Expand All @@ -56,7 +59,11 @@ jobs:
name: security-sast-semgrep
if: github.actor != 'dependabot[bot]'
steps:
- uses: actions/checkout@v3
- name: Setup Action
uses: actions/checkout@v3
with:
ref: ${{github.event.pull_request.head.sha}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- name: Semgrep
id: semgrep
uses: returntocorp/semgrep-action@v1
Expand All @@ -69,8 +76,11 @@ jobs:
needs:
- workflow_approval
steps:
- name: Checkout
- name: Setup Action
uses: actions/checkout@v2
with:
ref: ${{github.event.pull_request.head.sha}}
repository: ${{github.event.pull_request.head.repo.full_name}}

- name: Get maven dependencies
run: |
Expand Down Expand Up @@ -137,8 +147,11 @@ jobs:
SCHEMA_REGISTRY_URL: ${{ Secrets.SCHEMA_REGISTRY_URL }}

steps:
- name: Checkout
- name: Setup Action
uses: actions/checkout@v2
with:
ref: ${{github.event.pull_request.head.sha}}
repository: ${{github.event.pull_request.head.repo.full_name}}

- name: Install Splunk
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Splunk Connect for Kafka
## Splunk Connect for Kafk

Splunk Connect for Kafka is a Kafka Connect Sink for Splunk with the following features:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ public void createWithEmptyTopicMetaData() {
// when topics.regex value use in config then skip formation of topicMeta
Map<String, String> config = uu.createTaskConfig();
SplunkSinkConnectorConfig connectorConfig = new SplunkSinkConnectorConfig(config);
Assert.assertEquals(0, connectorConfig.topicMetas.size());
Assert.assertEquals(10, connectorConfig.topicMetas.size());
}

@Test(expected = ConfigException.class)
Expand Down