Sdscheduler changed to simplescheduler

This commit is contained in:
Ayush Shah 2021-08-10 11:13:42 +05:30
parent 51ae16d813
commit d3e652a54c
4 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
--- ---
description: >- description: >-
This guide will help install Sdscheduler and schedule connectors for This guide will help install Simple Scheduler and schedule connectors for
ingestion. ingestion.
--- ---

View File

@ -15,7 +15,7 @@
import json import json
from metadata.ingestion.workflow.workflow import Workflow from metadata.ingestion.workflow.workflow import Workflow
from sdscheduler.corescheduler import job from simplescheduler.corescheduler import job
class MetadataLoaderJob(job.JobBase, Workflow): class MetadataLoaderJob(job.JobBase, Workflow):

View File

@ -14,10 +14,10 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from sdscheduler.server import server from simplescheduler.server import server
import os import os
import json import json
from sdscheduler.server import server from simplescheduler.server import server
class SimpleServer(server.SchedulerServer): class SimpleServer(server.SchedulerServer):

View File

@ -68,7 +68,7 @@ connector_requirements = {
} }
scheduler_requirements = { scheduler_requirements = {
"apns@git+git://github.com/djacobs/PyAPNs.git#egg=apns", "apns@git+git://github.com/djacobs/PyAPNs.git#egg=apns",
"sdscheduler@git+https://github.com/StreamlineData/sdscheduler.git#egg=sdscheduler" "simplescheduler@git+https://github.com/StreamlineData/sdscheduler.git#egg=simplescheduler"
} }
base_plugins = { base_plugins = {
"pii-tags", "pii-tags",
@ -113,7 +113,7 @@ setup(
package_dir={"": "src"}, package_dir={"": "src"},
packages=find_namespace_packages(where='src', exclude=['tests*']), packages=find_namespace_packages(where='src', exclude=['tests*']),
dependency_links=['git+git://github.com/djacobs/PyAPNs.git#egg=apns', dependency_links=['git+git://github.com/djacobs/PyAPNs.git#egg=apns',
'git+https://github.com/StreamlineData/sdscheduler.git#egg=sdscheduler'], 'git+https://github.com/StreamlineData/sdscheduler.git#egg=simplescheduler'],
entry_points={ entry_points={
"console_scripts": ["metadata = metadata.cmd:metadata"], "console_scripts": ["metadata = metadata.cmd:metadata"],
"metadata.ingestion.source.plugins": [ "metadata.ingestion.source.plugins": [