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
Calling psycopg.sql.Identifier(val).as_string() in application code causes the latest New Relic agent to crash with wrapper_psycopg_as_string.<locals>._bind_params() missing 1 required positional argument: 'context'
as_string doesn't require the context argument. I have to do psycopg.sql.Identifier(val).as_string(None) to get around this New Relic crash in my application code for now