-
Notifications
You must be signed in to change notification settings - Fork 36
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
Fix "unexpected end of stream" error. #608
Conversation
We check that MariaDB container started, by looking into log and waiting for special lines. Before that change, we were looking for a line "ready for connections", which was duplicated and its first appearance was right before a reload of the container, so in some cases we were trying to connect to non-working DBMS. Now we use a unique line.
This is similar to the change made for sql-app in this MR: #599 |
Second commit is a fix for issue, described here: bitnami-labs/sealed-secrets#822 |
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.
Let's wait to CI just to double-check that docker-containers expected logs remain the same.
README.md
Outdated
- MSSQL: `mcr.microsoft.com/mssql/rhel/server` | ||
- Oracle | ||
- version 18c XE: `gvenzl/oracle-xe:18.4.0-slim` | ||
- version 18c XE: `gvenzl/oracle-xe:21-slim` |
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.
why does this oracle version need to be changed?
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.
To reflect this change[1] made in January.
95313bb#diff-9c5fb3d1b7e3b0f54bc5c4182965c4fe1f9023d449017cece3005d3f90e8e4d8R209
...pplications/src/test/java/io/quarkus/ts/external/applications/OpenShiftWorkshopHeroesIT.java
Show resolved
Hide resolved
...lications/src/test/java/io/quarkus/ts/external/applications/OpenShiftWorkshopVillainsIT.java
Show resolved
Hide resolved
Until 21.04.2022 we used quay.io/bitnami images to circumvent docker pull limit. Unforunately, Bitnami deleted all their quay.io images on the 20th of April, so now we use Docker hub and cashing proxy.
We check that MariaDB container started, by looking into log and waiting
for special lines. Before that change, we were looking for a line "ready for connections",
which was duplicated and its first appearance was right before a reload
of the container, so in some cases we were trying to connect to
non-working DBMS. Now we use a unique line.
Summary
(Summarize the problem solved by this PR, and how to verify it manually)
Please select the relevant options.
Checklist: