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
I'm following the Snowpark ML tutorial and one of the code examples throws an error. The error is handled by a telemetry collection code which throws an error itself. So I see only an error from the telemetry code and don't see the original error at all.
I expect to see the errors from the public API code and the telemetry not to interfere with it.
Also, I would like to disable telemetry collection. The Snowpark Session option doesn't work, or at least setting it to False doesn't disable the failing code path.
The text was updated successfully, but these errors were encountered:
This issue will be fixed in 1.1.2.
btw the initial error traceback looks correct. SnowparkInvalidObjectNameException is the cause. You got a different error after patching the decorator because you didn't pass args at: return func().
I'm following the Snowpark ML tutorial and one of the code examples throws an error. The error is handled by a telemetry collection code which throws an error itself. So I see only an error from the telemetry code and don't see the original error at all.
And the error is:
After patching the decorator in
snowflake/ml/_internal/telemetry.py
I can see the actual error:
I expect to see the errors from the public API code and the telemetry not to interfere with it.
Also, I would like to disable telemetry collection. The Snowpark Session option doesn't work, or at least setting it to
False
doesn't disable the failing code path.The text was updated successfully, but these errors were encountered: