Isort of ran out of puns for this one.

This commit is contained in:
Jorik Schellekens 2019-07-17 13:58:12 +01:00
parent 2fd49cedbb
commit d44f303fe0
11 changed files with 12 additions and 13 deletions

View file

@ -25,6 +25,7 @@ from twisted.internet import defer
from twisted.internet.abstract import isIPAddress
from twisted.python import failure
import synapse.logging.opentracing as opentracing
from synapse.api.constants import EventTypes, Membership
from synapse.api.errors import (
AuthError,
@ -53,8 +54,6 @@ from synapse.util import glob_to_regex
from synapse.util.async_helpers import Linearizer, concurrently_execute
from synapse.util.caches.response_cache import ResponseCache
import synapse.logging.opentracing as opentracing
# when processing incoming transactions, we try to handle multiple rooms in
# parallel, up to this limit.
TRANSACTION_CONCURRENCY_LIMIT = 10

View file

@ -18,6 +18,7 @@ from six import iteritems, itervalues
from twisted.internet import defer
import synapse.logging.opentracing as opentracing
from synapse.api import errors
from synapse.api.constants import EventTypes
from synapse.api.errors import (
@ -31,7 +32,6 @@ from synapse.util.async_helpers import Linearizer
from synapse.util.caches.expiringcache import ExpiringCache
from synapse.util.metrics import measure_func
from synapse.util.retryutils import NotRetryingDestination
import synapse.logging.opentracing as opentracing
from ._base import BaseHandler

View file

@ -15,7 +15,6 @@
# limitations under the License.
import logging
import synapse.logging.opentracing as opentracing
from six import iteritems
@ -23,6 +22,7 @@ from canonicaljson import encode_canonical_json, json
from twisted.internet import defer
import synapse.logging.opentracing as opentracing
from synapse.api.errors import CodeMessageException, SynapseError
from synapse.logging.context import make_deferred_yieldable, run_in_background
from synapse.types import UserID, get_domain_from_id

View file

@ -19,6 +19,7 @@ from six import iteritems
from twisted.internet import defer
import synapse.logging.opentracing as opentracing
from synapse.api.errors import (
Codes,
NotFoundError,
@ -27,7 +28,6 @@ from synapse.api.errors import (
SynapseError,
)
from synapse.util.async_helpers import Linearizer
import synapse.logging.opentracing as opentracing
logger = logging.getLogger(__name__)

View file

@ -17,6 +17,7 @@ import logging
from twisted.internet import defer
import synapse.logging.opentracing as opentracing
from synapse.api.errors import SynapseError
from synapse.http.servlet import (
RestServlet,
@ -25,7 +26,7 @@ from synapse.http.servlet import (
parse_string,
)
from synapse.types import StreamToken
import synapse.logging.opentracing as opentracing
from ._base import client_patterns
logger = logging.getLogger(__name__)

View file

@ -17,13 +17,13 @@ import logging
from twisted.internet import defer
import synapse.logging.opentracing as opentracing
from synapse.api.errors import Codes, NotFoundError, SynapseError
from synapse.http.servlet import (
RestServlet,
parse_json_object_from_request,
parse_string,
)
import synapse.logging.opentracing as opentracing
from ._base import client_patterns

View file

@ -17,10 +17,10 @@ import logging
from twisted.internet import defer
import synapse.logging.opentracing as opentracing
from synapse.http import servlet
from synapse.http.servlet import parse_json_object_from_request
from synapse.rest.client.transactions import HttpTransactionCache
import synapse.logging.opentracing as opentracing
from ._base import client_patterns

View file

@ -19,10 +19,10 @@ from canonicaljson import json
from twisted.internet import defer
import synapse.logging.opentracing as opentracing
from synapse.storage._base import SQLBaseStore
from synapse.storage.background_updates import BackgroundUpdateStore
from synapse.util.caches.expiringcache import ExpiringCache
import synapse.logging.opentracing as opentracing
logger = logging.getLogger(__name__)

View file

@ -13,7 +13,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
import synapse.logging.opentracing as opentracing
from six import iteritems
@ -21,6 +20,7 @@ from canonicaljson import json
from twisted.internet import defer
import synapse.logging.opentracing as opentracing
from synapse.api.errors import StoreError
from synapse.metrics.background_process_metrics import run_as_background_process
from synapse.storage._base import Cache, SQLBaseStore, db_to_json

View file

@ -17,8 +17,8 @@ import json
from twisted.internet import defer
from synapse.api.errors import StoreError
import synapse.logging.opentracing as opentracing
from synapse.api.errors import StoreError
from ._base import SQLBaseStore

View file

@ -18,12 +18,11 @@ from canonicaljson import encode_canonical_json
from twisted.internet import defer
import synapse.logging.opentracing as opentracing
from synapse.util.caches.descriptors import cached
from ._base import SQLBaseStore, db_to_json
import synapse.logging.opentracing as opentracing
class EndToEndKeyWorkerStore(SQLBaseStore):
@opentracing.trace_defered_function