We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67ff9b0 commit 85e5d6dCopy full SHA for 85e5d6d
opentelemetry-api/src/opentelemetry/util/_importlib_metadata.py
@@ -12,7 +12,7 @@
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
15
-from functools import lru_cache
+from functools import cache
16
17
# FIXME: Use importlib.metadata (not importlib_metadata)
18
# when support for 3.11 is dropped if the rest of
@@ -31,7 +31,7 @@
31
)
32
33
34
-@lru_cache()
+@cache
35
def _original_entry_points_cached():
36
return original_entry_points()
37
0 commit comments