Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OATS-CADC
ac
Commits
c48edc11
Commit
c48edc11
authored
Jan 03, 2017
by
Patrick Dowler
Browse files
added getPoolStatistics so test code can access stat summary without resorting to debug logging
parent
472beb17
Changes
2
Show whitespace changes
Inline
Side-by-side
cadc-access-control-server/build.gradle
View file @
c48edc11
...
...
@@ -13,7 +13,7 @@ repositories {
sourceCompatibility
=
1.7
group
=
'org.opencadc'
version
=
'1.1.
3
'
version
=
'1.1.
4
'
dependencies
{
compile
'log4j:log4j:1.2.+'
...
...
cadc-access-control-server/src/main/java/ca/nrc/cadc/ac/server/ldap/LdapConnectionPool.java
View file @
c48edc11
...
...
@@ -211,6 +211,13 @@ public class LdapConnectionPool
}
}
public
String
getPoolStatistics
()
{
if
(
pool
!=
null
)
return
poolName
+
" pool statistics: "
+
pool
.
getConnectionPoolStatistics
();
return
null
;
}
public
LdapConfig
getCurrentConfig
()
{
return
currentConfig
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment