Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature/inbound-transport-profile #1407

Merged
merged 6 commits into from
Sep 10, 2021
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
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
4 changes: 3 additions & 1 deletion aries_cloudagent/transport/inbound/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
from collections import namedtuple
from typing import Awaitable, Callable

from ...core.profile import Profile
from ..error import TransportError
from ..wire_format import BaseWireFormat

from .session import InboundSession


Expand All @@ -20,6 +20,7 @@ def __init__(
*,
max_message_size: int = 0,
wire_format: BaseWireFormat = None,
root_profile: Profile = None,
):
"""
Initialize the inbound transport instance.
Expand All @@ -33,6 +34,7 @@ def __init__(
self._max_message_size = max_message_size
self._scheme = scheme
self.wire_format: BaseWireFormat = wire_format
self.root_profile: Profile = root_profile

@property
def max_message_size(self):
Expand Down
2 changes: 0 additions & 2 deletions aries_cloudagent/transport/inbound/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@
from aiohttp import web

from ...messaging.error import MessageParseError

from ..error import WireFormatParseError
from ..wire_format import DIDCOMM_V0_MIME_TYPE, DIDCOMM_V1_MIME_TYPE

from .base import BaseInboundTransport, InboundTransportSetupError

LOGGER = logging.getLogger(__name__)
Expand Down
1 change: 1 addition & 0 deletions aries_cloudagent/transport/inbound/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ def register(self, config: InboundTransportConfiguration) -> str:
config.port,
self.create_session,
max_message_size=self.max_message_size,
root_profile=self.profile,
),
imported_class.__qualname__,
)
Expand Down
4 changes: 1 addition & 3 deletions aries_cloudagent/transport/inbound/ws.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,10 @@
import asyncio
import logging

from aiohttp import web, WSMessage, WSMsgType
from aiohttp import WSMessage, WSMsgType, web

from ...messaging.error import MessageParseError

from ..error import WireFormatParseError

from .base import BaseInboundTransport, InboundTransportSetupError

LOGGER = logging.getLogger(__name__)
Expand Down