Hi,

which Java version are you using?

This problem is very likely due to Java 8. Can you try with Java 11 or Java 17 ?

On 15/11/2021 12:47, Sumit Dubey2 wrote:
Dear dev,
We are trying to build and run the tests for Github Apache DS master using the following script on a fresh RHEL UBI 8.3 container:
-------------------------------------------------------------------------------------------------------------
#!/bin/bash
set -ex
#Dependencies
yum install -y git wget
cd /opt/
wget https://downloads.apache.org/maven/maven-3/3.8.3/binaries/apache-maven-3.8.3-bin.tar.gz <https://downloads.apache.org/maven/maven-3/3.8.3/binaries/apache-maven-3.8.3-bin.tar.gz>
tar xzvf apache-maven-3.8.3-bin.tar.gz
export PATH=/opt/apache-maven-3.8.3/bin:$PATH
cat <<'EOF' > /etc/yum.repos.d/adoptopenjdk.repo
[AdoptOpenJDK]
name=AdoptOpenJDK
baseurl=http://adoptopenjdk.jfrog.io/adoptopenjdk/rpm/centos/$releasever/$basearch
enabled=1
gpgcheck=1
gpgkey=https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public
EOF
yum install -y adoptopenjdk-11-hotspot
#Get the sources
git clone https://github.com/apache/directory-server.git <https://github.com/apache/directory-server.git>
cd directory-server
git checkout master
#Build and test
mvn verify -fn -DskipTests
mvn test -fn
-------------------------------------------------------------------------------------------------------------
We are running into the following error while executing the apacheds-server-integ tests:
-------------------------------------------------------------------------------------------------------------
[ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 33.031 s <<< FAILURE! - in org.apache.directory.server.operations.bind.DelegatedAuthOverSslIT
[ERROR] testDelegatedSSLAuthentication  Time elapsed: 31.536 s  <<< ERROR!
org.apache.directory.api.ldap.model.exception.LdapException: ERR_04169_RESPONSE_QUEUE_EMPTIED The response queue has been emptied, no response was found.         at org.apache.directory.server.operations.bind.DelegatedAuthOverSslIT.testDelegatedSSLAuthentication(DelegatedAuthOverSslIT.java:118) Caused by: org.apache.directory.api.ldap.model.exception.LdapException: ERR_04170_TIMEOUT_OCCURED TimeOut occurred         at org.apache.directory.server.operations.bind.DelegatedAuthOverSslIT.testDelegatedSSLAuthentication(DelegatedAuthOverSslIT.java:118)
-------------------------------------------------------------------------------------------------------------
Can you please help?
Thank you
Sumit Dubey
[email protected]


--------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

--
*Emmanuel Lécharny - CTO* 205 Promenade des Anglais – 06200 NICE
T. +33 (0)4 89 97 36 50
P. +33 (0)6 08 33 32 61
[email protected] https://www.busit.com/

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to