-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Http protocol #61
Conversation
@@ -3,6 +3,10 @@ description: Run Snippets Testss | |||
runs: | |||
using: "composite" | |||
steps: | |||
- uses: actions/setup-java@v1 | |||
with: | |||
java-version: "11" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should be putted somewhere that we are upgrading to Java 11, because people that are using Java 8 wont be able to use the SDK.
Also it is possible to make HTTP Requests using Java 8
doc/1/controllers/auth/check-rights/snippets/check-rights-java.test.yml
Outdated
Show resolved
Hide resolved
doc/1/controllers/auth/check-rights/snippets/check-rights-kotlin.test.yml
Outdated
Show resolved
Hide resolved
return | ||
} | ||
// if state is NOT open, return response to /_publicApi | ||
this.request.uri(URI.create("http://localhost:7512/_publicApi")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should test the _query
endpoint instead using a POST
request
This reverts commit 968cd6f.
What does this PR do ?
Http protocol support
How should this be manually tested?
Other changes
updated openjdk8 to 11 for all CI