Skip to content

Commit 8eb4e9e

Browse files
Merge pull request #15 from psteckler/fix/default-port
Change default port to 3085
2 parents ed1f6bd + 50a202a commit 8eb4e9e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

CodaClient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def __init__(
1616
websocket_protocol: str = "ws",
1717
graphql_host: str = "localhost",
1818
graphql_path: str = "/graphql",
19-
graphql_port: int = 8304,
19+
graphql_port: int = 3085,
2020
):
2121
self.endpoint = "{}://{}:{}{}".format(graphql_protocol, graphql_host, graphql_port, graphql_path)
2222
self.websocket_endpoint = "{}://{}:{}{}".format(websocket_protocol, graphql_host, graphql_port, graphql_path)

0 commit comments

Comments
 (0)