From 8ada2ddd8fe7de2d789864111cdf3ee0b8dc8ed7 Mon Sep 17 00:00:00 2001 From: Jake Pittis Date: Tue, 12 Dec 2023 22:35:20 -0500 Subject: [PATCH] Update getting started local tutorial to clarify required JDK version. See https://github.com/Netflix/mantis/issues/604 for context. The Mantis project does not presently compile will all JDK versions larger or equal to 8. --- docs/docs/getting-started/tutorials/local.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/docs/getting-started/tutorials/local.md b/docs/docs/getting-started/tutorials/local.md index 270f0a84f..019b9f7a4 100644 --- a/docs/docs/getting-started/tutorials/local.md +++ b/docs/docs/getting-started/tutorials/local.md @@ -2,7 +2,10 @@ ## Prerequisites -JDK 8 or higher +JDK 8 (newer versions may not be supported) + +!!! tip + Some users find https://sdkman.io/ helpful for managing multiple Java versions. ## Build and run the synthetic-sourcejob sample @@ -43,7 +46,7 @@ Such an MQL query would like like this. ```bash select country from stream where status==500 ``` -In another terminal window curl this port +In another terminal window curl this port (note that your port will likely be different) ```bash $ curl "localhost:8436?subscriptionId=nj&criterion=select%20country%20from%20stream%20where%20status%3D%3D500&clientId=nj2" ```