Skip to content

Commit bb67dea

Browse files
committed
revert to patch version
1 parent 1c8c610 commit bb67dea

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

agent_requirements.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ confluent-kafka==2.10.0
1313
cryptography==44.0.3
1414
ddtrace==2.21.4
1515
dnspython==2.7.0
16-
foundationdb==7.4.1
16+
foundationdb==6.3.25
1717
hazelcast-python-client==5.5.0
1818
in-toto==2.0.0
1919
jellyfish==1.2.0

foundationdb/datadog_checks/foundationdb/check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
from datadog_checks.base import AgentCheck
1010

11-
fdb.api_version(600)
11+
fdb.api_version(700)
1212

1313

1414
class FoundationdbCheck(AgentCheck):

foundationdb/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ license = "BSD-3-Clause"
3636

3737
[project.optional-dependencies]
3838
deps = [
39-
"foundationdb==7.4.1",
39+
"foundationdb==6.3.25",
4040
]
4141

4242
[project.urls]

foundationdb/tests/common.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050

5151
E2E_METADATA = {
5252
'start_commands': [
53-
'curl -o foundationdb-clients_7.4.1-1_amd64.deb '
54-
'-L https://github.com/apple/foundationdb/releases/download/7.4.1/foundationdb-clients_7.4.1-1_amd64.deb',
55-
'dpkg -i foundationdb-clients_7.4.1-1_amd64.deb',
53+
'curl -o foundationdb-clients_6.3.25-1_amd64.deb '
54+
'-L https://github.com/apple/foundationdb/releases/download/6.3.25/foundationdb-clients_6.3.25-1_amd64.deb',
55+
'dpkg -i foundationdb-clients_6.3.25-1_amd64.deb',
5656
],
5757
'docker_volumes': [
5858
'{}:/fdb/fdb.cluster'.format(CLUSTER_FILE),

foundationdb/tests/docker/Dockerfile.fdb-tls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM foundationdb/foundationdb:7.4.1
1+
FROM foundationdb/foundationdb:6.3.25
22
WORKDIR /var/fdb/tmp
33
COPY fdb.bash /var/fdb/scripts/fdb-new.bash
44
COPY tls/cert.crt /var/fdb/cert.crt

foundationdb/tests/docker/docker-compose.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
fdb-coordinator:
3-
image: foundationdb/foundationdb:7.4.1
3+
image: foundationdb/foundationdb:6.3.25
44
environment:
55
FDB_COORDINATOR: fdb-coordinator
66
FDB_NETWORKING_MODE: container
@@ -11,7 +11,7 @@ services:
1111
container_name: fdb-0
1212
depends_on:
1313
- fdb-coordinator
14-
image: foundationdb/foundationdb:7.4.1
14+
image: foundationdb/foundationdb:6.3.25
1515
environment:
1616
FDB_COORDINATOR: fdb-coordinator
1717
FDB_NETWORKING_MODE: container
@@ -20,7 +20,7 @@ services:
2020
container_name: fdb-1
2121
depends_on:
2222
- fdb-coordinator
23-
image: foundationdb/foundationdb:7.4.1
23+
image: foundationdb/foundationdb:6.3.25
2424
environment:
2525
FDB_COORDINATOR: fdb-coordinator
2626
FDB_NETWORKING_MODE: container

0 commit comments

Comments
 (0)