Skip to content

Commit 58d80cd

Browse files
committed
#901 Fixed: FBServiceManager.getAuthPlugins() reported the dbCryptConfig value
1 parent 3045325 commit 58d80cd

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/docs/asciidoc/release_notes.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ Symptoms include unexpected closed connections, and errors like "`__Unsupported
4444
+
4545
This fix was frontported from Jaybird 5.0.10.
4646
Only Firebird 2.5 (not supported) is affected.
47+
* Fixed: `FBServiceManager.getAuthPlugins()` reported the `dbCryptConfig` value (https://github.com/FirebirdSQL/jaybird/issues/901[#901])
4748

4849
=== Jaybird 6.0.3
4950

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

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

239239
@Override
240240
public String getAuthPlugins() {
241-
return ServiceManager.super.getDbCryptConfig();
241+
return ServiceManager.super.getAuthPlugins();
242242
}
243243

244244
@Override

0 commit comments

Comments
 (0)