Skip to content

Commit 268ba0b

Browse files
Merge remote-tracking branch 'origin/release-6.3' into merge-6.3
2 parents c7a55fe + 48ed886 commit 268ba0b

22 files changed

+480
-409
lines changed

bindings/c/fdb_c.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ void fdb_future_destroy( FDBFuture* f ) {
153153

154154
extern "C" DLLEXPORT
155155
fdb_error_t fdb_future_block_until_ready( FDBFuture* f ) {
156-
CATCH_AND_RETURN( TSAVB(f)->blockUntilReady(); );
156+
CATCH_AND_RETURN(TSAVB(f)->blockUntilReadyCheckOnMainThread(););
157157
}
158158

159159
fdb_bool_t fdb_future_is_error_v22( FDBFuture* f ) {

build/Dockerfile

+6-6
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ RUN cd /tmp && curl -L https://github.com/ninja-build/ninja/archive/v1.9.0.zip -
4545
cd .. && rm -rf ninja-1.9.0 ninja.zip
4646

4747
# install openssl
48-
RUN cd /tmp && curl -L https://www.openssl.org/source/openssl-1.1.1d.tar.gz -o openssl.tar.gz &&\
49-
echo "1e3a91bc1f9dfce01af26026f856e064eab4c8ee0a8f457b5ae30b40b8b711f2 openssl.tar.gz" > openssl-sha.txt &&\
48+
RUN cd /tmp && curl -L https://www.openssl.org/source/openssl-1.1.1h.tar.gz -o openssl.tar.gz &&\
49+
echo "5c9ca8774bd7b03e5784f26ae9e9e6d749c9da2438545077e6b3d755a06595d9 openssl.tar.gz" > openssl-sha.txt &&\
5050
sha256sum -c openssl-sha.txt && tar -xzf openssl.tar.gz &&\
51-
cd openssl-1.1.1d && scl enable devtoolset-8 -- ./config CFLAGS="-fPIC -O3" --prefix=/usr/local &&\
51+
cd openssl-1.1.1h && scl enable devtoolset-8 -- ./config CFLAGS="-fPIC -O3" --prefix=/usr/local &&\
5252
scl enable devtoolset-8 -- make -j`nproc` && scl enable devtoolset-8 -- make -j1 install &&\
5353
ln -sv /usr/local/lib64/lib*.so.1.1 /usr/lib64/ &&\
54-
cd /tmp/ && rm -rf /tmp/openssl-1.1.1d /tmp/openssl.tar.gz
54+
cd /tmp/ && rm -rf /tmp/openssl-1.1.1h /tmp/openssl.tar.gz
5555

5656
RUN cd /opt/ && curl -L https://github.com/facebook/rocksdb/archive/v6.10.1.tar.gz -o rocksdb.tar.gz &&\
5757
echo "d573d2f15cdda883714f7e0bc87b814a8d4a53a82edde558f08f940e905541ee rocksdb.tar.gz" > rocksdb-sha.txt &&\
@@ -61,8 +61,8 @@ RUN cd /opt/ && curl -L https://github.com/facebook/rocksdb/archive/v6.10.1.tar.
6161
ARG TIMEZONEINFO=America/Los_Angeles
6262
RUN rm -f /etc/localtime && ln -s /usr/share/zoneinfo/${TIMEZONEINFO} /etc/localtime
6363

64-
LABEL version=0.1.15
65-
ENV DOCKER_IMAGEVER=0.1.15
64+
LABEL version=0.1.17
65+
ENV DOCKER_IMAGEVER=0.1.17
6666
ENV JAVA_HOME=/usr/lib/jvm/java-1.8.0
6767
ENV CC=/opt/rh/devtoolset-8/root/usr/bin/gcc
6868
ENV CXX=/opt/rh/devtoolset-8/root/usr/bin/g++

build/Dockerfile.devel

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM foundationdb/foundationdb-build:0.1.15
1+
FROM foundationdb/foundationdb-build:0.1.17
22

33
USER root
44

build/docker-compose.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3"
22

33
services:
44
common: &common
5-
image: foundationdb/foundationdb-build:0.1.15
5+
image: foundationdb/foundationdb-build:0.1.17
66

77
build-setup: &build-setup
88
<<: *common

contrib/Joshua/scripts/bindingTestScript.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ SCRIPTID="${$}"
77
SAVEONERROR="${SAVEONERROR:-1}"
88
PYTHONDIR="${BINDIR}/tests/python"
99
testScript="${BINDIR}/tests/bindingtester/run_binding_tester.sh"
10-
VERSION="1.8"
10+
VERSION="1.9"
1111

1212
source ${SCRIPTDIR}/localClusterStart.sh
1313

@@ -28,7 +28,7 @@ then
2828
echo "Log dir: ${LOGDIR}"
2929
echo "Python path: ${PYTHONDIR}"
3030
echo "Lib dir: ${LIBDIR}"
31-
echo "Cluster String: ${CLUSTERSTRING}"
31+
echo "Cluster String: ${FDBCLUSTERTEXT}"
3232
echo "Script Id: ${SCRIPTID}"
3333
echo "Version: ${VERSION}"
3434
fi

0 commit comments

Comments
 (0)