Skip to content
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

Remove beta flag for Connectors Inbound Security Instant Support #30365

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ Subsystem-Name: Jakarta Connectors 2.0 Inbound Security
kind=ga
edition=base
WLP-Platform: jakartaee-9.1
WLP-InstantOn-Enabled: true; type:=beta
WLP-InstantOn-Enabled: true
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ Subsystem-Name: Java Connector Architecture Security Inflow 1.0
kind=ga
edition=base
WLP-Platform: javaee-6.0,javaee-7.0,javaee-8.0,jakartaee-8.0
WLP-InstantOn-Enabled: true; type:=beta
WLP-InstantOn-Enabled: true
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ public class InboundSecurityTest extends JCAFATTest implements RarTests {
.addUnsupportedRepeatIDs(EmptyAction.ID)
.setServerSetup(InboundSecurityTest::serverSetUp)
.setServerStart(InboundSecurityTest::serverStart)
.setServerTearDown(InboundSecurityTest::serverTearDown)
.setBeta(true);
.setServerTearDown(InboundSecurityTest::serverTearDown);

public static LibertyServer serverSetUp(ServerMode mode) throws Exception {
server = LibertyServerFactory.getLibertyServer("com.ibm.ws.jca.fat.regr", null, true);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ public class InboundSecurityTestRapid extends JCAFATTest implements RarTests {
.addUnsupportedRepeatIDs(EmptyAction.ID)
.setServerSetup(InboundSecurityTestRapid::serverSetUp)
.setServerStart(InboundSecurityTestRapid::serverStart)
.setServerTearDown(InboundSecurityTestRapid::serverTearDown)
.setBeta(true);
.setServerTearDown(InboundSecurityTestRapid::serverTearDown);

public static LibertyServer serverSetUp(ServerMode mode) throws Exception {
server = LibertyServerFactory.getLibertyServer("com.ibm.ws.jca.fat.regr", null, true);
Expand Down