You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Having these flow and task prefect not starting task extract_some_text (no print output in the logs) actually however shows in gui task in working
@task(cache_policy=INPUTS + RUN_ID)
def extract_some_text(reader: ContainsNonSerializableObject):
result="we are here"
print(result)
return result
@flow(log_prints=True)
def extractor():
# init paddle OCR
reader = ContainsNonSerializableObject(
name="reader",
bad_object=PaddleOCR(use_angle_cls=True, lang='en')
)
result = extract_some_text(reader=reader)
Version info
Version: 3.1.8
API version: 0.8.4
Python version: 3.12.3
Git commit: 53a83ebc
Built: Tue, Dec 17, 2024 10:20 AM
OS/Arch: linux/x86_64
Profile: local
Server type: server
Pydantic version: 2.9.2
Additional context
No response
The text was updated successfully, but these errors were encountered:
hi @ramelito - I think we'll need some more information in order to understand what's going wrong here. can you make a minimal reproducible example of this?
Bug summary
Having these flow and task prefect not starting task extract_some_text (no print output in the logs) actually however shows in gui task in working
Version info
Additional context
No response
The text was updated successfully, but these errors were encountered: