Skip to content

Commit

Permalink
Merge pull request #184 from lsst-uk/hotfix/remove_rsp_portal
Browse files Browse the repository at this point in the history
removed RSP portal panel
  • Loading branch information
RoyWilliams authored Aug 19, 2024
2 parents 6e2ea5e + eecd15a commit 8f520f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 3 additions & 1 deletion tests/integration/common/src/test_manage_status.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
nid = 7

def func(msl, iproc):
msl = mysql.connector.connect(**config)
ms = manage_status(msl, 'test_lasair_statistics')
for i in range(niter):
time.sleep(deltaT*random())
Expand Down Expand Up @@ -70,7 +71,7 @@ def test_delete(self):
self.assertEqual(status, {})

def test_multiprocessing(self):
msl = mysql.connector.connect(**config)
msl = None
procs = []
for iproc in range(nproc):
proc = Process(target=func, args=(msl, iproc,))
Expand All @@ -79,6 +80,7 @@ def test_multiprocessing(self):
for proc in procs:
proc.join()

msl = mysql.connector.connect(**config)
ms = manage_status(msl, 'test_lasair_statistics')
status = ms.read(nid)
# print(status)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,6 @@
{% include "includes/widgets/widget_object_sherlock.html" %}
</div>

{% if user.is_authenticated %}
<div class="col-12 col-xl-6 mb-4">
{% include "includes/widgets/widget_object_rsp.html" %}
</div>
{% endif %}

<div class="col-12 mb-4">
{% include "includes/widgets/widget_object_lightcurve.html" %}
</div>
Expand Down

0 comments on commit 8f520f8

Please sign in to comment.