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

Fix #23703 Unable to avoid creating a JDBC Connection Pool with the Datasource Classname whose length is over 512 #23704

Merged
merged 1 commit into from
Nov 9, 2021
Merged
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
@@ -1,6 +1,7 @@
<!--

Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2021 Contributors to the Eclipse Foundation

This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
Expand Down Expand Up @@ -44,7 +45,7 @@
/>
</sun:dropDown>
"<br/>
<sun:textField id="datasourceField" columns="$int{60}" maxLength="#{sessionScope.fieldLengths['jdbcPool.datasource']}" text="#{wizardPoolExtra.DatasourceClassnameField}" disabled="#{!wizardPoolExtra.dsClassname}" >
<sun:textField id="datasourceField" columns="$int{60}" maxLength="#{sessionScope.fieldLengths['maxLength.jdbcPool.datasource']}" text="#{wizardPoolExtra.DatasourceClassnameField}" disabled="#{!wizardPoolExtra.dsClassname}" >
<!afterCreate
getClientId(component="$this{component}" clientId=>$page{datasourceClassNameFieldId});
/>
Expand Down