We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The problem seems to be that the parameters argument to the before_cursor_execute listener is almost always (maybe always) a dict in my project. Beeline always treats it as if it's a list: https://github.com/honeycombio/beeline-python/blob/634a567/beeline/middleware/flask/__init__.py#L115.
parameters
before_cursor_execute
Quote from the docs about the parameters argument:
Dictionary, tuple, or list of parameters being passed to the execute() or executemany() method of the DBAPI cursor. In some cases may be None.
The text was updated successfully, but these errors were encountered:
Hey! Sorry for the delay, but I haven't forgotten about this. I'll take a look shortly and get back to you.
Sorry, something went wrong.
[middleware] support dict parameters type in flask middleware
14017a3
Fixes #62. Bumps version to 2.5.1
c097af2
This should be fixed in 2.5.1 of the beeline, please update when you get a chance and let us know if you still see any issues.
Successfully merging a pull request may close this issue.
The problem seems to be that the
parameters
argument to thebefore_cursor_execute
listener is almost always (maybe always) a dict in my project. Beeline always treats it as if it's a list: https://github.com/honeycombio/beeline-python/blob/634a567/beeline/middleware/flask/__init__.py#L115.Quote from the docs about the
parameters
argument:The text was updated successfully, but these errors were encountered: