edu-rdm-integration 3.10.2__py3-none-any.whl → 3.10.4__py3-none-any.whl

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 edu-rdm-integration might be problematic. Click here for more details.

@@ -20,9 +20,6 @@ from django.db.transaction import (
20
20
  from uploader_client.adapters import (
21
21
  adapter,
22
22
  )
23
- from web_edu.plugins.gis_ruo.enums import (
24
- OPERATIONS_METHODS_MAP,
25
- )
26
23
 
27
24
  from educommon import (
28
25
  logger,
@@ -39,6 +36,7 @@ from edu_rdm_integration.stages.export_data.consts import (
39
36
  TOTAL_ATTACHMENTS_SIZE_KEY,
40
37
  )
41
38
  from edu_rdm_integration.stages.export_data.functions.base.consts import (
39
+ OPERATIONS_METHODS_MAP,
42
40
  OPERATIONS_URLS_MAP,
43
41
  )
44
42
  from edu_rdm_integration.stages.export_data.functions.base.requests import (
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: edu-rdm-integration
3
- Version: 3.10.2
3
+ Version: 3.10.4
4
4
  Summary: Интеграция с Региональной витриной данных
5
5
  Author-email: BARS Group <education_dev@bars.group>
6
6
  Project-URL: Homepage, https://stash.bars-open.ru/projects/EDUBASE/repos/edu-rdm-integration/browse
@@ -226,7 +226,7 @@ INSTALLED_APPS = (
226
226
  RDM_TRANSFER_TASK_MINUTE = conf.get('rdm_transfer_task', 'MINUTE')
227
227
  RDM_TRANSFER_TASK_HOUR = conf.get('rdm_transfer_task', 'HOUR')
228
228
  RDM_TRANSFER_TASK_DAY_OF_WEEK = conf.get('rdm_transfer_task', 'DAY_OF_WEEK')
229
- RDM_TRANSFER_TASK_LOCK_EXPIRE_SECONDS = conf.get('rdm_transfer_task', 'LOCK_EXPIRE_SECONDS')
229
+ RDM_TRANSFER_TASK_LOCK_EXPIRE_SECONDS = conf.get_int('rdm_transfer_task', 'LOCK_EXPIRE_SECONDS')
230
230
 
231
231
  # Настройка запуска периодической задачи выгрузки данных - быстрая очередь:
232
232
  RDM_FAST_TRANSFER_TASK_MINUTE = conf.get('rdm_transfer_task_fast', 'MINUTE')
@@ -244,7 +244,7 @@ INSTALLED_APPS = (
244
244
  RDM_CHECK_SUSPEND_TASK_MINUTE = conf.get('rdm_check_suspend_task', 'MINUTE')
245
245
  RDM_CHECK_SUSPEND_TASK_HOUR = conf.get('rdm_check_suspend_task', 'HOUR')
246
246
  RDM_CHECK_SUSPEND_TASK_DAY_OF_WEEK = conf.get('rdm_check_suspend_task', 'DAY_OF_WEEK')
247
- RDM_CHECK_SUSPEND_TASK_LOCK_EXPIRE_SECONDS = conf.get('rdm_check_suspend_task', 'LOCK_EXPIRE_SECONDS')
247
+ RDM_CHECK_SUSPEND_TASK_LOCK_EXPIRE_SECONDS = conf.get_int('rdm_check_suspend_task', 'LOCK_EXPIRE_SECONDS')
248
248
  RDM_CHECK_SUSPEND_TASK_STAGE_TIMEOUT = conf.get_int('rdm_check_suspend_task', 'STAGE_TIMEOUT')
249
249
 
250
250
  # Настройка запуска периодической задачи отправки файлов с данными РВД
@@ -259,7 +259,7 @@ INSTALLED_APPS = (
259
259
  RDM_UPLOAD_STATUS_TASK_MINUTE = conf.get('rdm_upload_status_task', 'MINUTE')
260
260
  RDM_UPLOAD_STATUS_TASK_HOUR = conf.get('rdm_upload_status_task', 'HOUR')
261
261
  RDM_UPLOAD_STATUS_TASK_DAY_OF_WEEK = conf.get('rdm_upload_status_task', 'DAY_OF_WEEK')
262
- RDM_UPLOAD_STATUS_TASK_EXPIRE_SECOND = conf.get('rdm_upload_status_task', 'LOCK_EXPIRE_SECONDS')
262
+ RDM_UPLOAD_STATUS_TASK_LOCK_EXPIRE_SECONDS = conf.get_int('rdm_upload_status_task', 'LOCK_EXPIRE_SECONDS')
263
263
 
264
264
  # Настройка очереди Redis для формирования файлов РВД.
265
265
  RDM_REDIS_HOST = conf.get('rdm_redis', 'REDIS_HOST')
@@ -225,7 +225,7 @@ edu_rdm_integration/stages/upload_data/apps.py,sha256=aFhVPK-65b35CGKoAeAgQ0mm3S
225
225
  edu_rdm_integration/stages/upload_data/consts.py,sha256=PFpWpJeOys3wu2JwfNkLOgpp7qss8z5gBxY3XuTxwYA,243
226
226
  edu_rdm_integration/stages/upload_data/dataclasses.py,sha256=zwxlED6yEeMStfc-Y6pvdY7xF-530qbO0HBWfwneeI8,261
227
227
  edu_rdm_integration/stages/upload_data/enums.py,sha256=uGRqcflf6moPWfFa8KKbeSY2y88-AegAcRJKlQ1PA_Y,453
228
- edu_rdm_integration/stages/upload_data/export_managers.py,sha256=H_CPOPRDrGR7kDWk7klm4tkRjUrFChAruEJs75GMj34,13640
228
+ edu_rdm_integration/stages/upload_data/export_managers.py,sha256=wPRx91JE8mECgfSkpkePP4DGIjL2KrbJ9-WlR6YFg-o,13594
229
229
  edu_rdm_integration/stages/upload_data/helpers.py,sha256=rHEOt2JvLFbZlyTAg8pK8OGNQ3qEWu2D9nrYJIi4VRY,6177
230
230
  edu_rdm_integration/stages/upload_data/models.py,sha256=TkIFxVq3RY9n5nAjPPtctV7QLyTmC4aXdRV6rWPnW7w,5155
231
231
  edu_rdm_integration/stages/upload_data/operations.py,sha256=CVQYaucerJbOAE3JDO05FaX4Bz9hBMKBXYqJohXKZpI,6462
@@ -250,8 +250,8 @@ edu_rdm_integration/stages/upload_data/uploader_log/ui.py,sha256=mU3XA9zVKHGqzNk
250
250
  edu_rdm_integration/stages/upload_data/uploader_log/migrations/0001_initial.py,sha256=r5oOB7DBK9-mfuqPAgjXUJY5-hEcmMdILCwDTpaLnBc,753
251
251
  edu_rdm_integration/stages/upload_data/uploader_log/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
252
252
  edu_rdm_integration/stages/upload_data/uploader_log/templates/ui-js/object-grid-buttons.js,sha256=2xyGe0wdVokM0RhpzRzcRvJPBkBmPe3SlZry4oP4Nzs,6201
253
- edu_rdm_integration-3.10.2.dist-info/licenses/LICENSE,sha256=uw43Gjjj-1vXWCItfSrNDpbejnOwZMrNerUh8oWbq8Q,3458
254
- edu_rdm_integration-3.10.2.dist-info/METADATA,sha256=ZXmwYyJCfCuLjMA2yp_ek3uWGfHy7q_ozbagN24k3zI,39641
255
- edu_rdm_integration-3.10.2.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
256
- edu_rdm_integration-3.10.2.dist-info/top_level.txt,sha256=nRJV0O14UtNE-jGIYG03sohgFnZClvf57H5m6VBXe9Y,20
257
- edu_rdm_integration-3.10.2.dist-info/RECORD,,
253
+ edu_rdm_integration-3.10.4.dist-info/licenses/LICENSE,sha256=uw43Gjjj-1vXWCItfSrNDpbejnOwZMrNerUh8oWbq8Q,3458
254
+ edu_rdm_integration-3.10.4.dist-info/METADATA,sha256=-nsUP5IgrJXkHQgLNcQ4AuWX6Q89A5vLmY8GL_OQtn0,39659
255
+ edu_rdm_integration-3.10.4.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
256
+ edu_rdm_integration-3.10.4.dist-info/top_level.txt,sha256=nRJV0O14UtNE-jGIYG03sohgFnZClvf57H5m6VBXe9Y,20
257
+ edu_rdm_integration-3.10.4.dist-info/RECORD,,