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
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
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]

Reply via email to