You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/pwabuilder-google-play/services/azureStorageBlobService.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ export interface BlobStorage {
11
11
12
12
/**
13
13
* Blob storage service that connects to PWABuilder's Azure Storage account for uploading and downloading files.
14
-
* NOTE: we lazily initialize the Azure BlobServiceClient and ContainerClient to avoid loading Azure SDK packagestoo early, which can cause conflicts with OpenTelemetry in our environment. Without this, we'd see errors like, "Module @azure/core-tracing has been loaded before @azure/opentelemetry-instrumentation-azure-sdk so it might not work, please initialize it before requiring @azure/core-tracing'"
14
+
* NOTE: we lazily initialize the Azure BlobServiceClient and ContainerClientfor better performance andto avoid loadinglargeAzure SDK packagesduring application startup when they may not be needed (e.g., in development mode).