Scott Marlow
Scott Marlow
> I looked at the code too and may be we are just missing something but as @beikov I was not able to understand how this change can affect the...
Is the idea to change all calls to io.fabric8.kubernetes.client.dsl.internal.PodOperationContext#withContainerId(String containerId) to use the first containerId from an internal collection of container IDs? I don't know any of the internals and...
> The logic would roughly be - if a containerId is not set, get the deployment and use the first container name as the id. :+1: > > If there's...
What is the impact of this issue if I have two (Jenkins pipeline defined) containers, the first is called [jakartaeetck-ci](https://github.com/eclipse-ee4j/jakartaee-tck/blob/master/Jenkinsfile#L44) and the second is called [james-mail](https://github.com/eclipse-ee4j/jakartaee-tck/blob/master/Jenkinsfile#L35). Please assume that my...
We should increment to `Jakarta EE TCK Process 1.3`
@chengfang > @scottmarlow in legacy-ee pom.xml, can we keep the legacy.jakarta.persistence-api? This is used referenced by ejb class `org.jboss.as.ejb3.component.stateful.StatefulSessionBeanClassTable` With that change, I get build failures: ``` [INFO] WildFly: Jipijapa...
@chengfang It doesn't build but perhaps that will change when we have more changes: ``` ./build.sh clean install -DskipTests=true /home/smarlow/work/wildfly/mvnw -Dmaven.user.home=/home/smarlow/work/wildfly/tools clean install '-DskipTests=true' [INFO] Scanning for projects... [ERROR] [ERROR]...
Noah, currently, https://docs.jboss.org/author/display/WFLY8/JPA+Reference+Guide#JPAReferenceGuide-UsingEclipseLink just refers back to https://community.jboss.org/wiki/HowToUseEclipseLinkWithAS7. Which isn't enough. One of the described issues https://bugs.eclipse.org/bugs/show_bug.cgi?id=414974, is still in need of a patch (not sure if a patch will...
https://docs.jboss.org/author/display/WFLY8/JPA+Reference+Guide#JPAReferenceGuide-UsingEclipseLink is updated to have some instructions on getting started with EclipseLink on WildFly8.
PersistenceContextType.EXTENDED only works with EJB stateful session beans. What happens if you use transaction scoped persistence context instead? @PersistenceContext private EntityManager em; We have pretty good TRACE logging in WildFly...