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 434f8bb commit c907914Copy full SHA for c907914
apps/webapp/app/v3/objectStore.server.ts
@@ -145,9 +145,10 @@ function getObjectStoreClient(protocol?: string): AwsClient | undefined {
145
}
146
147
export function hasObjectStoreClient(): boolean {
148
- return getObjectStoreClient() !== undefined;
+ return getObjectStoreClient() !== undefined || getObjectStoreClient(env.OBJECT_STORE_DEFAULT_PROTOCOL) !== undefined;
149
150
151
+
152
export async function uploadPacketToObjectStore(
153
filename: string,
154
data: ReadableStream | string,
0 commit comments