Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates for verification #31

Merged
merged 3 commits into from Sep 2, 2013
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Merge branch 'master' of github.com:loggly/install-script into add-tag

Conflicts:
	configure-syslog.py
  • Loading branch information
♥ Ivan Tam ♥
♥ Ivan Tam ♥ committed Aug 31, 2013
commit f23cabcc5aa0c17acc843a28a3ebe4cc4fe5fbd3
@@ -1148,7 +1148,7 @@ def doverify(loggly_user, loggly_password, loggly_subdomain):
print ".",
sys.stdout.flush()

LOGGER.debug("Sending search request. %s" % search_url)
Logger.printLog("Sending search request. %s" % search_url)
data = get_json_data(search_url, loggly_user, loggly_password)
rsid = data["rsid"]["id"]
search_result_url = REST_URL_GET_SEARCH_RESULT % (loggly_subdomain, LOGGLY_DOMAIN, rsid)
@@ -1157,8 +1157,9 @@ def doverify(loggly_user, loggly_password, loggly_subdomain):
total_events = data["total_events"]
if total_events >= 1 and VERIFICATION_FAIL not in LOGGLY_QA:
print "."
LOGGER.info("******* Congratulations! "
"Loggly is configured successfully.")
Logger.printLog(("******* Congratulations! "
"Loggly is configured successfully."),
print_comp = True)
break
wait_time += VERIFICATION_SLEEP_INTERAVAL_PER_ITERATION
time.sleep(VERIFICATION_SLEEP_INTERAVAL_PER_ITERATION)
You are viewing a condensed version of this merge commit. You can view the full changes here.
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.