chore: adding reports

Signed-off-by: Kevin Johnson <kljohnson@verisk.com>
This commit is contained in:
Kevin Johnson
2024-11-26 16:09:42 -07:00
committed by Fredrik Adelöw
parent 8f7a06bcbf
commit 3f34ea918d
3 changed files with 8 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
---
'@backstage/plugin-catalog-backend-module-bitbucket-server': minor
'@backstage/backend-defaults': minor
---
Throttles Bitbucket Server API calls
@@ -46,7 +46,7 @@ const throttle = pThrottle({
});
const throttledFetch = throttle(
async (url: fetch.RequestInfo, options?: fetch.RequestInit) => {
async (url: RequestInfo, options?: RequestInit) => {
return await fetch(url, options);
},
);
@@ -28,7 +28,7 @@ const throttle = pThrottle({
});
const throttledFetch = throttle(
async (url: fetch.RequestInfo, options?: fetch.RequestInit) => {
async (url: RequestInfo, options?: RequestInit) => {
return await fetch(url, options);
},
);