brynq-sdk-task-scheduler 1.1.2__tar.gz → 1.1.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.
- {brynq_sdk_task_scheduler-1.1.2 → brynq_sdk_task_scheduler-1.1.3}/PKG-INFO +1 -1
- {brynq_sdk_task_scheduler-1.1.2 → brynq_sdk_task_scheduler-1.1.3}/brynq_sdk/task_scheduler/task_scheduler.py +2 -2
- {brynq_sdk_task_scheduler-1.1.2 → brynq_sdk_task_scheduler-1.1.3}/brynq_sdk_task_scheduler.egg-info/PKG-INFO +1 -1
- {brynq_sdk_task_scheduler-1.1.2 → brynq_sdk_task_scheduler-1.1.3}/brynq_sdk_task_scheduler.egg-info/requires.txt +1 -1
- {brynq_sdk_task_scheduler-1.1.2 → brynq_sdk_task_scheduler-1.1.3}/setup.py +2 -2
- {brynq_sdk_task_scheduler-1.1.2 → brynq_sdk_task_scheduler-1.1.3}/brynq_sdk/task_scheduler/__init__.py +0 -0
- {brynq_sdk_task_scheduler-1.1.2 → brynq_sdk_task_scheduler-1.1.3}/brynq_sdk_task_scheduler.egg-info/SOURCES.txt +0 -0
- {brynq_sdk_task_scheduler-1.1.2 → brynq_sdk_task_scheduler-1.1.3}/brynq_sdk_task_scheduler.egg-info/dependency_links.txt +0 -0
- {brynq_sdk_task_scheduler-1.1.2 → brynq_sdk_task_scheduler-1.1.3}/brynq_sdk_task_scheduler.egg-info/not-zip-safe +0 -0
- {brynq_sdk_task_scheduler-1.1.2 → brynq_sdk_task_scheduler-1.1.3}/brynq_sdk_task_scheduler.egg-info/top_level.txt +0 -0
- {brynq_sdk_task_scheduler-1.1.2 → brynq_sdk_task_scheduler-1.1.3}/setup.cfg +0 -0
|
@@ -316,7 +316,7 @@ class TaskScheduler(BrynQ):
|
|
|
316
316
|
payload = {
|
|
317
317
|
'reload_id': self.run_id,
|
|
318
318
|
'task_id': self.task_id,
|
|
319
|
-
'customer_id': os.getenv('
|
|
319
|
+
'customer_id': os.getenv('BRYNQ_SUBDOMAIN').lower().replace(' ', '_'),
|
|
320
320
|
'started_at': datetime.datetime.now().isoformat(),
|
|
321
321
|
'loglevel': loglevel,
|
|
322
322
|
'message': message
|
|
@@ -390,7 +390,7 @@ class TaskScheduler(BrynQ):
|
|
|
390
390
|
payload = {
|
|
391
391
|
'reload_id': self.run_id,
|
|
392
392
|
'task_id': self.task_id,
|
|
393
|
-
'customer_id': os.getenv('
|
|
393
|
+
'customer_id': os.getenv('BRYNQ_SUBDOMAIN').lower().replace(' ', '_'),
|
|
394
394
|
'started_at': datetime.datetime.now().isoformat(),
|
|
395
395
|
'loglevel': 'CRITICAL',
|
|
396
396
|
'message': str(e),
|
|
@@ -3,7 +3,7 @@ from setuptools import setup
|
|
|
3
3
|
|
|
4
4
|
setup(
|
|
5
5
|
name='brynq_sdk_task_scheduler',
|
|
6
|
-
version='1.1.
|
|
6
|
+
version='1.1.3',
|
|
7
7
|
description='Code to execute tasks in BrynQ.com with the task scheduler',
|
|
8
8
|
long_description='Code to execute tasks in the BrynQ.com platform with the task scheduler',
|
|
9
9
|
author='BrynQ',
|
|
@@ -15,7 +15,7 @@ setup(
|
|
|
15
15
|
'brynq-sdk-functions>=1',
|
|
16
16
|
'brynq-sdk-mysql>=1',
|
|
17
17
|
'brynq-sdk-mandrill>=1',
|
|
18
|
-
'brynq-sdk-elastic>=
|
|
18
|
+
'brynq-sdk-elastic>=2'
|
|
19
19
|
],
|
|
20
20
|
zip_safe=False,
|
|
21
21
|
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|