We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad8fa72 commit a4f3e42Copy full SHA for a4f3e42
1 file changed
weaviate/export/executor.py
@@ -270,6 +270,7 @@ def _get_and_validate_create_arguments(
270
) -> Tuple[str, ExportStorage, List[str], List[str]]:
271
if not isinstance(export_id, str):
272
raise TypeError(f"'export_id' must be of type str. Given type: {type(export_id)}.")
273
+ export_id = export_id.lower()
274
if isinstance(backend, str):
275
try:
276
backend = ExportStorage(backend.lower())
@@ -321,6 +322,7 @@ def _get_and_validate_get_status(
321
322
) -> Tuple[str, ExportStorage]:
323
324
325
326
327
328
0 commit comments