Skip to content

Commit 1a431ea

Browse files
nesitorolethanh
authored andcommitted
Fix: Use the new aleph-message published version instead the development one.
1 parent 30cafda commit 1a431ea

File tree

1 file changed

+1
-1
lines changed
  • src/aleph/vm/orchestrator

1 file changed

+1
-1
lines changed

src/aleph/vm/orchestrator/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ async def create_vm_execution(vm_hash: ItemHash, pool: VmPool, persistent: bool
5656
message, original_message = await load_updated_message(vm_hash)
5757
pool.message_cache[vm_hash] = message
5858

59-
logger.debug(f"Message: {message.json(indent=4, sort_keys=True, exclude_none=True)}")
59+
logger.debug(f"Message: {json.dumps(message.model_dump(exclude_none=True), indent=4, sort_keys=True, default=str)}")
6060

6161
execution = await pool.create_a_vm(
6262
vm_hash=vm_hash,

0 commit comments

Comments
 (0)