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

fix url for getting results #2

Merged
merged 1 commit into from Aug 17, 2013
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

fix url for getting results

  • Loading branch information
rhigdon committed Aug 17, 2013
commit 44c187b875128e85f1d8f471c93d1ceb9baffc1e
@@ -1095,7 +1095,7 @@ def doverify(loggly_user, loggly_password, loggly_subdomain):
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_user, rsid)
search_result_url = REST_URL_GET_SEARCH_RESULT % (loggly_subdomain, rsid)
Logger.printLog("Sending search result request. %s" % search_result_url)
data = get_json_data(search_result_url, loggly_user, loggly_password)
total_events = data["total_events"]
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.