Skip to content

Commit f1ea94b

Browse files
committed
Take latest changes from develop
1 parent f021219 commit f1ea94b

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
server-id: splunk-artifactory
2020
- name: build
2121
run: mvn package --file pom.xml -DskipTests=true
22+
- name: Create temp artifacts apidocs folder
23+
run: mkdir apidocs
2224
- name: Create GitHub Release
2325
uses: softprops/action-gh-release@v1
2426
with:
@@ -32,3 +34,12 @@ jobs:
3234
env:
3335
MAVEN_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }}
3436
MAVEN_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }}
37+
38+
- name: Zip docs
39+
run: zip -r apidocs/docs.zip splunk/target/apidocs
40+
41+
- name: Upload Artifact
42+
uses: actions/upload-artifact@v3
43+
with:
44+
name: apidocs
45+
path: apidocs/docs.zip

splunk/src/main/java/com/splunk/HttpService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ public int getPort() {
208208
/**
209209
* Sets Custom Headers of this service
210210
*
211-
* @param headers
211+
* @param headers The custom headers.
212212
*/
213213
public void setCustomHeaders(Map<String, String> headers) {
214214
if (Objects.nonNull(headers)) {

splunk/src/main/java/com/splunk/OutputServer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public String getStatus() {
9292
/**
9393
* Returns client certificate path.
9494
*
95-
* @return
95+
* @return Path of client certificate.
9696
*/
9797
public String getClientCert() {
9898
return getString("clientCert", "");

0 commit comments

Comments
 (0)