https://prefect.io logo
Title
b

Brett Naul

03/19/2020, 4:37 PM
is there a migration guide or anything for switching to the new result handling implied by https://docs.prefect.io/core/PINs/PIN-16-Results-and-Targets.html and https://github.com/PrefectHQ/prefect/pull/2151/files ? I think I understand the concept but I'm not sure exactly what I'm supposed to do about it 🙂 or maybe the answer is "nothing yet" but then the deprecation warning feels a bit premature...?
c

Chris White

03/19/2020, 4:39 PM
Hey Brett — those new APIs haven’t been hooked up yet but once they are we’ll definitely include a thorough guide (one hasn’t been written yet though)
b

Brett Naul

03/19/2020, 4:40 PM
seeing a ton of warnings with no way to silence them is real torture for my OCD side...guess I'll consider this exposure therapy 😅
🤣 3
l

Laura Lorenz (she/her)

03/19/2020, 4:53 PM
not sure how well this works for you but one option is to throw one of these before you import prefect to silence them
import warnings
warnings.filterwarnings("ignore", category=UserWarning)