diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-10-31 16:16:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-31 20:16:17 +0000 |
commit | ed1b8795766e71416d6955412f782f4960547ccc (patch) | |
tree | b616b06616675db3aed0f18178fe9fc84b22b7a3 /changelog.d | |
parent | Remove remaining usage of cursor_to_dict. (#16564) (diff) | |
download | synapse-ed1b8795766e71416d6955412f782f4960547ccc.tar.xz |
Do not call getfullargspec on every call. (#16589)
getfullargspec is relatively expensive and the results will not change between calls, so precalculate it outside the wrapper.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/16589.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/16589.misc b/changelog.d/16589.misc new file mode 100644 index 0000000000..6e69368bbf --- /dev/null +++ b/changelog.d/16589.misc @@ -0,0 +1 @@ +Improve performance when using opentracing. |