Skip to content

Commit 6c2ff07

Browse files
author
Mehdi BEN ABDALLAH
committed
remove support for endpoints that are not yet supported in the container release of the emulator
1 parent bcc563c commit 6c2ff07

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

modules/cosmosdb/testcontainers/cosmosdb/__init__.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,13 @@
1919

2020

2121
class Endpoints(Enum):
22-
Direct = auto()
23-
Gremlin = auto()
24-
Table = auto()
2522
MongoDB = auto()
26-
Cassandra = auto()
2723

2824

2925
# Ports mostly derived from https://docs.microsoft.com/en-us/azure/cosmos-db/emulator-command-line-parameters
3026
EMULATOR_PORT = 8081
3127
endpoint_ports = {
32-
Endpoints.Direct: frozenset([10251, 10252, 10253, 10254]),
33-
Endpoints.Gremlin: frozenset([8901]),
34-
Endpoints.Table: frozenset([8902]),
3528
Endpoints.MongoDB: frozenset([10255]),
36-
Endpoints.Cassandra: frozenset([10350]),
3729
}
3830

3931

0 commit comments

Comments
 (0)