folio-data-import 0.2.2__tar.gz → 0.2.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of folio-data-import might be problematic. Click here for more details.
- {folio_data_import-0.2.2 → folio_data_import-0.2.3}/PKG-INFO +1 -1
- {folio_data_import-0.2.2 → folio_data_import-0.2.3}/pyproject.toml +1 -1
- {folio_data_import-0.2.2 → folio_data_import-0.2.3}/src/folio_data_import/UserImport.py +2 -0
- {folio_data_import-0.2.2 → folio_data_import-0.2.3}/LICENSE +0 -0
- {folio_data_import-0.2.2 → folio_data_import-0.2.3}/README.md +0 -0
- {folio_data_import-0.2.2 → folio_data_import-0.2.3}/src/folio_data_import/MARCDataImport.py +0 -0
- {folio_data_import-0.2.2 → folio_data_import-0.2.3}/src/folio_data_import/__init__.py +0 -0
- {folio_data_import-0.2.2 → folio_data_import-0.2.3}/src/folio_data_import/__main__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "folio_data_import"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.3"
|
|
4
4
|
description = "A python module to interact with the data importing capabilities of the open-source FOLIO ILS"
|
|
5
5
|
authors = ["Brooks Travis <brooks.travis@gmail.com>"]
|
|
6
6
|
license = "MIT"
|
|
@@ -594,7 +594,9 @@ class UserImporter: # noqa: R0902
|
|
|
594
594
|
await self.logfile.write(message + "\n")
|
|
595
595
|
tasks = []
|
|
596
596
|
if tasks:
|
|
597
|
+
start = time.time()
|
|
597
598
|
await asyncio.gather(*tasks)
|
|
599
|
+
duration = time.time() - start
|
|
598
600
|
async with self.lock:
|
|
599
601
|
message = (
|
|
600
602
|
f"{dt.now().isoformat(sep=' ', timespec='milliseconds')}: "
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|