Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
barchetta committed Apr 16, 2024
1 parent 0455585 commit c133a13
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/webserver/streaming/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ to the size of the file being uploaded or downloaded.

## Build and run

```bash
```shell
mvn package
java -jar target/helidon-examples-webserver-streaming.jar
```

Upload a file and download it back with `curl`:
```bash
```shell
curl --data-binary "@large-file.bin" http://localhost:8080/upload
curl http://localhost:8080/download --output myfile.bin
```
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,4 @@ public static void main(String[] args) {
System.out.println("Streaming service is down")
);
}

}
}

0 comments on commit c133a13

Please sign in to comment.