-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Update OracleContainer
and re-activate on CI
#4298
Conversation
The changes from the test class should be moved to the real Oracle module container class and then we can enable the CI in the tests. |
OracleContainer
and re-activate on CI
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.
Can't approve because I opened the PR 😅
LGTM, just note the comment.
@Deprecated | ||
public static final String DEFAULT_TAG = "18.4.0"; | ||
@Deprecated | ||
public static final String IMAGE = DEFAULT_IMAGE_NAME.getUnversionedPart(); |
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 add those public constants, if they were not present in the first place?
modules/oracle-xe/src/main/java/org/testcontainers/containers/OracleContainer.java
Show resolved
Hide resolved
modules/oracle-xe/src/main/java/org/testcontainers/containers/OracleContainer.java
Outdated
Show resolved
Hide resolved
@Deprecated | ||
public static final String DEFAULT_TAG = "18.4.0-slim"; | ||
@Deprecated | ||
public static final String IMAGE = DEFAULT_IMAGE_NAME.getUnversionedPart(); |
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.
These are newly added fields - no need to make them public and deprecated
modules/oracle-xe/src/main/java/org/testcontainers/containers/OracleContainer.java
Outdated
Show resolved
Hide resolved
…OracleContainer.java Co-authored-by: Sergei Egorov <[email protected]>
…OracleContainer.java Co-authored-by: Sergei Egorov <[email protected]>
Trying to reproduce #4297