From 0c6b0dc53910ef8b28b30956f89d06b057fea9d0 Mon Sep 17 00:00:00 2001 From: Harness_user Date: Tue, 26 Oct 2021 15:26:13 -0500 Subject: [PATCH 1/3] Update pipeline Java HTTP Server --- config/.harness/java_http_client.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/config/.harness/java_http_client.yaml b/config/.harness/java_http_client.yaml index b9a9274..47f5fea 100644 --- a/config/.harness/java_http_client.yaml +++ b/config/.harness/java_http_client.yaml @@ -55,6 +55,15 @@ pipeline: tags: - <+pipeline.sequenceId> optimize: true + - step: + type: Run + name: AAA + identifier: AAA + spec: + connectorRef: account.nofar_dockerhub + image: "maven " + command: aaa + privileged: false infrastructure: type: KubernetesDirect spec: From a65bc3577762282832c0e7676656c911c6c7d971 Mon Sep 17 00:00:00 2001 From: nofarb Date: Wed, 10 Nov 2021 09:58:50 -0600 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e7f7ba5..6b7f904 100644 --- a/README.md +++ b/README.md @@ -30,4 +30,4 @@ It creates a self-contained, executable JAR in the `target` directory. - + From 0b3195ad37f18e0c413ab7f4d58c0873879df7d6 Mon Sep 17 00:00:00 2001 From: nofarb Date: Wed, 10 Nov 2021 09:59:24 -0600 Subject: [PATCH 3/3] Update DirectoryListing.java --- src/main/java/io/harness/jhttp/processor/DirectoryListing.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/io/harness/jhttp/processor/DirectoryListing.java b/src/main/java/io/harness/jhttp/processor/DirectoryListing.java index eddd69c..8218f78 100644 --- a/src/main/java/io/harness/jhttp/processor/DirectoryListing.java +++ b/src/main/java/io/harness/jhttp/processor/DirectoryListing.java @@ -44,7 +44,7 @@ public boolean process(HttpRequest request, HttpResponse response) { private void appendLink(String fileName, String uri, PrintWriter writer) { // writer.append(String.format("
  • \n%s\n
  • \n", uri, fileName, fileName)); - writer.append(String.format("
  • \n%s\n
  • \n", uri, fileName, fileName)); + writer.append(String.format("
  • \n%s\n
  • \n", uri, fileName, fileName)); // writer.append(String.format("
  • \n%s\n
  • \n", uri, fileName, fileName)); }