Skip to content

Commit

Permalink
chore: removed no longer needed --enable-preview flag (#602)
Browse files Browse the repository at this point in the history
Removed no longer needed --enable-preview flag now that we are on JDK
21.

Solves PZ-1507
  • Loading branch information
edgarvonk authored Feb 20, 2024
1 parent c5af5e9 commit 3ba78a7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ COPY target/zaakafhandelcomponent.jar /
RUN date -Iseconds > /build_timestamp.txt

# Start zaakafhandelcomponent
ENTRYPOINT ["java", "--enable-preview", "-jar", "zaakafhandelcomponent.jar"]
ENTRYPOINT ["java", "-jar", "zaakafhandelcomponent.jar"]
EXPOSE 8080 9990

ARG branchName
Expand Down
1 change: 0 additions & 1 deletion helm/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ spec:
command:
- java
- -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:8787
- --enable-preview
- -jar
- zaakafhandelcomponent.jar
{{- end }}

0 comments on commit 3ba78a7

Please sign in to comment.