Skip to content

Commit

Permalink
Merge branch upstream main into per_tenant_logging
Browse files Browse the repository at this point in the history
Signed-off-by: Shaanjot Gill <gill.shaanjots@gmail.com>
  • Loading branch information
shaangill025 committed Aug 23, 2023
2 parents c3aaceb + a35dbd1 commit fde3a09
Show file tree
Hide file tree
Showing 21 changed files with 3,033 additions and 2,142 deletions.
689 changes: 581 additions & 108 deletions aries_cloudagent/connections/base_manager.py

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions aries_cloudagent/connections/models/conn_record.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,9 +294,9 @@ def record_value(self) -> dict:
async def retrieve_by_did(
cls,
session: ProfileSession,
their_did: str = None,
my_did: str = None,
their_role: str = None,
their_did: Optional[str] = None,
my_did: Optional[str] = None,
their_role: Optional[str] = None,
) -> "ConnRecord":
"""Retrieve a connection record by target DID.
Expand Down
14 changes: 7 additions & 7 deletions aries_cloudagent/connections/models/connection_target.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Record used to handle routing of messages to another agent."""

from typing import Sequence
from typing import Optional, Sequence

from marshmallow import EXCLUDE, fields

Expand All @@ -24,12 +24,12 @@ class Meta:
def __init__(
self,
*,
did: str = None,
endpoint: str = None,
label: str = None,
recipient_keys: Sequence[str] = None,
routing_keys: Sequence[str] = None,
sender_key: str = None,
did: Optional[str] = None,
endpoint: Optional[str] = None,
label: Optional[str] = None,
recipient_keys: Optional[Sequence[str]] = None,
routing_keys: Optional[Sequence[str]] = None,
sender_key: Optional[str] = None,
):
"""
Initialize a ConnectionTarget instance.
Expand Down
Empty file.
Loading

0 comments on commit fde3a09

Please sign in to comment.