Skip to content

Commit 4ca7e4e

Browse files
committed
#902 Fixed: FBServiceManager.getAuthPlugins() reported the dbCryptConfig value
1 parent 7d8d610 commit 4ca7e4e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/docs/asciidoc/release_notes.adoc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ For known issues, consult <<known-issues>>.
3535
The following has been changed or fixed since Jaybird 5.0.10:
3636

3737
* Backported fatal error detection improvements for `FBPooledConnection` from Jaybird 6 (https://github.com/FirebirdSQL/jaybird/issues/899[#899])
38+
* Fixed: `FBServiceManager.getAuthPlugins()` reported the `dbCryptConfig` value (https://github.com/FirebirdSQL/jaybird/issues/902[#902])
39+
+
40+
This fix was backported from Jaybird 6.0.4.
3841
3942
[#jaybird-5-0-10-changelog]
4043
=== Jaybird 5.0.10

src/main/org/firebirdsql/management/FBServiceManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ public void setDbCryptConfig(String dbCryptConfig) {
233233

234234
@Override
235235
public String getAuthPlugins() {
236-
return ServiceManager.super.getDbCryptConfig();
236+
return ServiceManager.super.getAuthPlugins();
237237
}
238238

239239
@Override

0 commit comments

Comments
 (0)