Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cc6f432

Browse files
committedApr 10, 2024·
Fix: vm-connector used obsolete software
The vm-connector service used to run with obsolete versions of the aleph-sdk and Python. Solution: Use the latest the version of the SDK and pin the version of dependencies.
1 parent ab29137 commit cc6f432

File tree

2 files changed

+22
-17
lines changed

2 files changed

+22
-17
lines changed
 

‎docker/vm_connector.dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM python:3.9
1+
FROM python:3.11
22

33
RUN apt-get update && apt-get -y upgrade && apt-get install -y \
44
libsecp256k1-dev \
55
zip \
66
&& rm -rf /var/lib/apt/lists/*
77

8-
RUN pip install fastapi aiofiles uvicorn aleph-client eth-account
8+
RUN pip install 'fastapi==0.110.0' 'aiofiles==23.2.1' 'uvicorn==0.29.0' 'aleph-sdk-python==0.9.1'
99

1010
WORKDIR /opt
1111
ENV PYTHONPATH=/opt

‎vm_connector/main.py

+20-15
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
from typing import Dict, Optional, Union
44

55
import aiohttp
6-
from aleph_client.asynchronous import create_post
7-
from aleph_client.chains.common import get_fallback_private_key
8-
from aleph_client.chains.ethereum import ETHAccount
9-
from aleph_client.types import StorageEnum
6+
from aleph.sdk import AuthenticatedAlephHttpClient
7+
from aleph.sdk.chains.common import get_fallback_private_key
8+
from aleph.sdk.chains.ethereum import ETHAccount
9+
from aleph.sdk.types import StorageEnum
10+
from aleph_message.status import MessageStatus
1011
from fastapi import FastAPI, HTTPException, Request
1112
from fastapi.responses import Response, StreamingResponse
1213
from pydantic import BaseModel
@@ -167,17 +168,21 @@ async def publish_data(body: PostBody):
167168
content = json.loads(message["item_content"])
168169
content_content = content["content"]
169170

170-
result = await create_post(
171-
account=account,
172-
post_content=content_content,
173-
post_type=content["type"],
174-
address=content["address"],
175-
ref=None,
176-
channel=message["channel"],
177-
inline=True,
178-
storage_engine=StorageEnum.storage,
179-
)
180-
return {"status": "success"}
171+
async with AuthenticatedAlephHttpClient(account) as client:
172+
result, status = await client.create_post(
173+
post_content=content_content,
174+
post_type=content["type"],
175+
address=content["address"],
176+
ref=None,
177+
channel=message["channel"],
178+
inline=True,
179+
storage_engine=StorageEnum.storage,
180+
sync=True,
181+
)
182+
if status == MessageStatus.PROCESSED:
183+
return {"status": "success"}
184+
else:
185+
return {"status": "error"}
181186

182187

183188
@app.get("/properties")

0 commit comments

Comments
 (0)
Please sign in to comment.