Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • ssa/workspaces
1 result
Show changes
...@@ -251,7 +251,9 @@ class WorkflowRequestRestService: ...@@ -251,7 +251,9 @@ class WorkflowRequestRestService:
file = lookup_file(request=self.request) file = lookup_file(request=self.request)
# 2. create ingestion workflow request # 2. create ingestion workflow request
ingest_type = "ingest_cal" if "calibration" in self.request.matchdict["name"] else "ingest" ingest_type = (
"ingest_cal" if "calibration" in self.request.matchdict["name"] else "ingest_image"
)
ingest_request = self.request.info.create_workflow_request( ingest_request = self.request.info.create_workflow_request(
workflow=ingest_type, workflow=ingest_type,
argument={"parent_wf_request_id": self.request.matchdict["request_id"]}, argument={"parent_wf_request_id": self.request.matchdict["request_id"]},
......
...@@ -74,7 +74,7 @@ class TestArchiveService: ...@@ -74,7 +74,7 @@ class TestArchiveService:
params = { params = {
"parameters": { "parameters": {
"product_locator": spl, "product_locator": spl,
"user_email": "workspaces-analysts@listmgr.nrao.edu", "user_email": "workspaces-analysts-test@listmgr.nrao.edu",
"metadata": fake_metadata, "metadata": fake_metadata,
} }
} }
......
...@@ -15,10 +15,8 @@ logger = logging.getLogger(__name__) ...@@ -15,10 +15,8 @@ logger = logging.getLogger(__name__)
class NotificationServiceRESTClient(NotificationServiceIF): class NotificationServiceRESTClient(NotificationServiceIF):
def __init__(self): def __init__(self):
self.url = ( self.url = CapoConfig().settings("edu.nrao.workspaces.NotificationSettings").serviceUrl
CapoConfig().settings("edu.nrao.archive.workspaces.NotificationSettings").serviceUrl self.linkUrl = CapoConfig().settings("edu.nrao.workspaces.UISettings").serviceUrl
)
self.linkUrl = CapoConfig().settings("edu.nrao.archive.workspaces.UISettings").serviceUrl
def notify_submitted(self, request: CapabilityRequestIF): def notify_submitted(self, request: CapabilityRequestIF):
# bail out early if we have no user email # bail out early if we have no user email
...@@ -76,7 +74,7 @@ class NotificationServiceRESTClient(NotificationServiceIF): ...@@ -76,7 +74,7 @@ class NotificationServiceRESTClient(NotificationServiceIF):
""" """
logger.info("SENDING QA-READY NOTIFICATION!!!") logger.info("SENDING QA-READY NOTIFICATION!!!")
analyst_email = ( analyst_email = (
CapoConfig().settings("edu.nrao.archive.workspaces.NotificationSettings").analystEmail CapoConfig().settings("edu.nrao.workspaces.NotificationSettings").analystEmail
) )
requests.post( requests.post(
f"{self.url}/notify/ready-for-QA_email/send", f"{self.url}/notify/ready-for-QA_email/send",
......
...@@ -70,11 +70,9 @@ class ArchiveService(ArchiveServiceIF): ...@@ -70,11 +70,9 @@ class ArchiveService(ArchiveServiceIF):
- obs_end_time: End time of observation - obs_end_time: End time of observation
:return: HTTP Response for attempt to create std_calibration request :return: HTTP Response for attempt to create std_calibration request
""" """
capability_url = ( capability_url = CapoConfig().settings("edu.nrao.workspaces.CapabilitySettings").serviceUrl
CapoConfig().settings("edu.nrao.archive.workspaces.CapabilitySettings").serviceUrl
)
analyst_email = ( analyst_email = (
CapoConfig().settings("edu.nrao.archive.workspaces.NotificationSettings").analystEmail CapoConfig().settings("edu.nrao.workspaces.NotificationSettings").analystEmail
) )
parameters = { parameters = {
"parameters": { "parameters": {
......
...@@ -31,7 +31,7 @@ class WorkflowServiceRESTClient(WorkflowServiceIF): ...@@ -31,7 +31,7 @@ class WorkflowServiceRESTClient(WorkflowServiceIF):
"""This is the workflow service REST client.""" """This is the workflow service REST client."""
def __init__(self): def __init__(self):
self.url = CapoConfig().settings("edu.nrao.archive.workspaces.WorkflowSettings").serviceUrl self.url = CapoConfig().settings("edu.nrao.workspaces.WorkflowSettings").serviceUrl
def execute(self, request: WorkflowRequestIF): def execute(self, request: WorkflowRequestIF):
""" """
...@@ -141,9 +141,7 @@ class WorkflowService(WorkflowServiceIF): ...@@ -141,9 +141,7 @@ class WorkflowService(WorkflowServiceIF):
self.message_router = Router("workflow") self.message_router = Router("workflow")
self.message_router.register(self) self.message_router.register(self)
self.info = info self.info = info
self.processing_settings = CapoConfig().settings( self.processing_settings = CapoConfig().settings("edu.nrao.workspaces.ProcessingSettings")
"edu.nrao.archive.workspaces.ProcessingSettings"
)
def attach_file_to_request(self, request: WorkflowRequestIF, filename: str, content: bytes): def attach_file_to_request(self, request: WorkflowRequestIF, filename: str, content: bytes):
""" """
......