Skip to content
This repository was archived by the owner on Feb 23, 2026. It is now read-only.
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
5518645
feat: optimize _GapicCallable
daniel-sanche Sep 6, 2023
0cc03bd
cleaned up metadata lines
daniel-sanche Sep 7, 2023
c97a636
chore: avoid type checks in error wrapper
daniel-sanche Sep 7, 2023
b453df4
Revert "chore: avoid type checks in error wrapper"
daniel-sanche Sep 7, 2023
2f7acff
add default wrapped function
daniel-sanche Sep 8, 2023
31f0b4e
fixed decorator order
daniel-sanche Sep 8, 2023
b92328c
fixed spacing
daniel-sanche Sep 8, 2023
0831dbf
fixed comment typo
daniel-sanche Sep 8, 2023
a1563d2
fixed spacing
daniel-sanche Sep 8, 2023
fb1a372
Merge branch 'main' into optimize_gapic_callable
daniel-sanche Sep 11, 2023
52ed5be
Merge branch 'main' into optimize_gapic_callable
daniel-sanche Feb 10, 2024
85e2102
fixed spacing
daniel-sanche Feb 10, 2024
c76f51c
removed unneeded helpers
daniel-sanche Feb 10, 2024
f4a9021
use caching
daniel-sanche Feb 10, 2024
cacc73c
improved metadata parsing
daniel-sanche Feb 10, 2024
a30101d
improved docstring
daniel-sanche Feb 10, 2024
db9a9c4
fixed logic
daniel-sanche Feb 10, 2024
a555629
added benchmark test
daniel-sanche Feb 13, 2024
cfe5c7d
Merge branch 'main' into optimize_gapic_callable
daniel-sanche Feb 13, 2024
fbbaaca
update threshold
daniel-sanche Feb 15, 2024
576bb0f
run benchmark in loop for testing
daniel-sanche Feb 16, 2024
7c32a5d
use verbose logs
daniel-sanche Feb 16, 2024
26bec79
Revert testing
daniel-sanche Feb 16, 2024
c25e0eb
used smaller value
daniel-sanche Feb 16, 2024
49201ca
changed threshold
daniel-sanche Feb 16, 2024
3d2c964
Merge branch 'main' into optimize_gapic_callable
daniel-sanche Feb 16, 2024
c9c1ff3
Merge branch 'main' into optimize_gapic_callable
daniel-sanche May 3, 2024
deca58c
removed link in comment
daniel-sanche May 3, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixed spacing
  • Loading branch information
daniel-sanche authored Sep 8, 2023
commit a1563d20845d2d9387ecdf3a7945d7c74e8c0511
2 changes: 1 addition & 1 deletion google/api_core/gapic_v1/method.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def __call__(self, *args, timeout=DEFAULT, retry=DEFAULT, **kwargs):
if metadata is None:
metadata = []
kwargs["metadata"] = (*self._metadata, *metadata)

return wrapped_func(*args, **kwargs)


Expand Down