Skip to content

Commit

Permalink
Disable activity-monitor.
Browse files Browse the repository at this point in the history
We no longer run this in prod, so we shouldn't run it in test / dev.
  • Loading branch information
jsha committed Jan 5, 2016
1 parent 2b15b6c commit f67648d
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 12 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,3 @@ _testmain.go
*.test
*.prof
*.coverprofile

boulder-start/boulder-start
activity-monitor/activity-monitor
8 changes: 0 additions & 8 deletions test/integration-test.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,12 +201,6 @@ def run_client_tests():
if subprocess.Popen(cmd, shell=True, cwd=root, executable='/bin/bash').wait() != 0:
die(ExitStatus.PythonFailure)

def check_activity_monitor():
"""Ensure that the activity monitor is running and received some messages."""
resp = urllib2.urlopen("http://localhost:8007/debug/vars")
debug_vars = json.loads(resp.read())
assert debug_vars['messages'] > 0, "Activity Monitor received zero messages."

@atexit.register
def cleanup():
import shutil
Expand Down Expand Up @@ -271,8 +265,6 @@ def main():
if args.run_all or args.run_letsencrypt:
run_client_tests()

check_activity_monitor()

if not startservers.check():
die(ExitStatus.Error)
exit_status = ExitStatus.OK
Expand Down
1 change: 0 additions & 1 deletion test/startservers.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ def start(race_detection):
t.daemon = True
t.start()
progs = [
'activity-monitor',
'boulder-wfe',
'boulder-ra',
'boulder-sa',
Expand Down

0 comments on commit f67648d

Please sign in to comment.