Skip to content

Commit

Permalink
One more reference to the deprecated subject field in SerderACDC. (W…
Browse files Browse the repository at this point in the history
…ebOfTrust#676)

* One more reference to the deprecated `subject` field in SerderACDC.

Signed-off-by: pfeairheller <[email protected]>

* Reapply changes from PR 671

Signed-off-by: pfeairheller <[email protected]>

---------

Signed-off-by: pfeairheller <[email protected]>
  • Loading branch information
pfeairheller authored Feb 13, 2024
1 parent a068148 commit a9a7e72
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions images/keripy.dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Builder layer
FROM python:3.10.13-alpine3.18 as builder
FROM python:3.10-alpine as builder

# Install compilation dependencies
RUN apk --no-cache add \
Expand All @@ -24,7 +24,7 @@ RUN pip install --upgrade pip && \
mkdir /keripy/src

# Copy Python dependency files in
COPY requirements.txt setup.py .
COPY requirements.txt setup.py ./
# Set up Rust environment and install Python dependencies
# Must source the Cargo environment for the blake3 library to see
# the Rust intallation during requirements install
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/ipex/grant.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def grantDo(self, tymth, tock=0.0):
acdc = signing.serialize(creder, prefixer, seqner, saider)

if self.recp is None:
recp = creder.subject['i'] if 'i' in creder.subject else None
recp = creder.attrib['i'] if 'i' in creder.attrib else None
elif self.recp in self.hby.kevers:
recp = self.recp
else:
Expand Down

0 comments on commit a9a7e72

Please sign in to comment.