Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
4c4b078
make consistent_hash_ring private
bryevdv Jul 11, 2019
038db50
make default_retry_policy private
bryevdv Jul 11, 2019
51d4466
make endpoint_discovery_retry_policy private
bryevdv Jul 11, 2019
b1719fe
make hash_partition_resolver private
bryevdv Jul 11, 2019
46e7fed
make location_cache private
bryevdv Jul 11, 2019
bff6cc9
make murmur_hash private
bryevdv Jul 11, 2019
0e100af
make range private
bryevdv Jul 11, 2019
3d2e65c
make range_partition_resolver private
bryevdv Jul 11, 2019
3e43f69
make vector_session_token private
bryevdv Jul 16, 2019
60ad7fb
make resource_throttle_retry_policy private
bryevdv Jul 16, 2019
68fd7a9
make retry_utility private
bryevdv Jul 16, 2019
8e9274c
make utils private
bryevdv Jul 16, 2019
6dad678
make routing private
bryevdv Jul 17, 2019
6b1a641
make execution_context private
bryevdv Jul 18, 2019
ce36df2
make cosmos_client_connection private
bryevdv Jul 18, 2019
2063355
make retry_options private
bryevdv Jul 18, 2019
8e84029
make query_iterable private
bryevdv Jul 18, 2019
eedb532
make constants private
bryevdv Jul 19, 2019
56c074a
make synchronized_request private
bryevdv Jul 19, 2019
109e496
make session_retry_policy private
bryevdv Jul 19, 2019
c94dc6d
make partition private
bryevdv Jul 19, 2019
4502740
make global_endpoint_manager private
bryevdv Jul 19, 2019
0a60acf
make runtime_constants private
bryevdv Jul 19, 2019
4fb54ac
make session private
bryevdv Jul 19, 2019
2a41dfc
make request_object private
bryevdv Jul 19, 2019
444d5d5
make base private
bryevdv Jul 23, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
make cosmos_client_connection private
  • Loading branch information
bryevdv committed Jul 18, 2019
commit ce36df236f96375053c7db338fa9a443b414bd45
2 changes: 1 addition & 1 deletion sdk/cosmos/azure-cosmos/azure/cosmos/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"""

import six
from .cosmos_client_connection import CosmosClientConnection
from ._cosmos_client_connection import CosmosClientConnection
from .errors import HTTPFailure
from .http_constants import StatusCodes
from .offer import Offer
Expand Down
2 changes: 1 addition & 1 deletion sdk/cosmos/azure-cosmos/azure/cosmos/cosmos_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"""

import six
from .cosmos_client_connection import CosmosClientConnection
from ._cosmos_client_connection import CosmosClientConnection
from .database import Database
from .documents import ConnectionPolicy, DatabaseAccount
from .query_iterable import QueryIterable
Expand Down
2 changes: 1 addition & 1 deletion sdk/cosmos/azure-cosmos/azure/cosmos/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"""

import six
from .cosmos_client_connection import CosmosClientConnection
from ._cosmos_client_connection import CosmosClientConnection
from .container import Container
from .offer import Offer
from .http_constants import StatusCodes
Expand Down
2 changes: 1 addition & 1 deletion sdk/cosmos/azure-cosmos/azure/cosmos/scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"""

import six
from azure.cosmos.cosmos_client_connection import CosmosClientConnection
from azure.cosmos._cosmos_client_connection import CosmosClientConnection
from .partition_key import NonePartitionKeyValue
from.query_iterable import QueryIterable
from typing import (
Expand Down
2 changes: 1 addition & 1 deletion sdk/cosmos/azure-cosmos/azure/cosmos/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"""

import six
from .cosmos_client_connection import CosmosClientConnection
from ._cosmos_client_connection import CosmosClientConnection
from typing import (
Any,
List,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from Worker import Worker
from multiprocessing.pool import ThreadPool
import azure.cosmos.documents as documents
import azure.cosmos.cosmos_client_connection as cosmos_client_connection
import azure.cosmos._cosmos_client_connection as cosmos_client_connection

class MultiMasterScenario(object):
def __init__(self):
Expand Down
2 changes: 1 addition & 1 deletion sdk/cosmos/azure-cosmos/test/globaldb_mock_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import json
import pytest

import azure.cosmos.cosmos_client_connection as cosmos_client_connection
import azure.cosmos._cosmos_client_connection as cosmos_client_connection
import azure.cosmos.documents as documents
import azure.cosmos.errors as errors
import azure.cosmos.constants as constants
Expand Down
2 changes: 1 addition & 1 deletion sdk/cosmos/azure-cosmos/test/globaldb_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import time
import pytest

import azure.cosmos.cosmos_client_connection as cosmos_client_connection
import azure.cosmos._cosmos_client_connection as cosmos_client_connection
import azure.cosmos.documents as documents
import azure.cosmos.errors as errors
import azure.cosmos.global_endpoint_manager as global_endpoint_manager
Expand Down
2 changes: 1 addition & 1 deletion sdk/cosmos/azure-cosmos/test/location_cache_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from time import sleep

from azure.cosmos.http_constants import ResourceType
import azure.cosmos.cosmos_client_connection as cosmos_client_connection
import azure.cosmos._cosmos_client_connection as cosmos_client_connection
import azure.cosmos.documents as documents
from azure.cosmos.request_object import _RequestObject
from azure.cosmos._location_cache import LocationCache
Expand Down
2 changes: 1 addition & 1 deletion sdk/cosmos/azure-cosmos/test/proxy_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import unittest
import pytest
import azure.cosmos.documents as documents
import azure.cosmos.cosmos_client_connection as cosmos_client_connection
import azure.cosmos._cosmos_client_connection as cosmos_client_connection
import test_config
import six
if six.PY2:
Expand Down
2 changes: 1 addition & 1 deletion sdk/cosmos/azure-cosmos/test/streaming_failover_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import unittest
import azure.cosmos.cosmos_client_connection as cosmos_client_connection
import azure.cosmos._cosmos_client_connection as cosmos_client_connection
import pytest
import azure.cosmos.documents as documents
import azure.cosmos.errors as errors
Expand Down