You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kibble.apache.org by hu...@apache.org on 2018/09/19 07:13:03 UTC

[kibble-scanners] branch master updated (31a75c4 -> db88a83)

This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/kibble-scanners.git.


    from 31a75c4  could be no auth was set..
     new 6fc3f4c  we should just pass the response text..
     new db88a83  this is extremely spammy when running manually :(

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/plugins/scanners/github-issues.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


[kibble-scanners] 02/02: this is extremely spammy when running manually :(

Posted by hu...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kibble-scanners.git

commit db88a8393fdbc81446286ee906de0f4a18b5efbf
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Wed Sep 19 09:12:51 2018 +0200

    this is extremely spammy when running manually :(
    
    disable it for now
---
 src/plugins/scanners/github-issues.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/plugins/scanners/github-issues.py b/src/plugins/scanners/github-issues.py
index 2b054cc..cfdc976 100644
--- a/src/plugins/scanners/github-issues.py
+++ b/src/plugins/scanners/github-issues.py
@@ -160,7 +160,7 @@ def scan(KibbleBit, source):
             if KibbleBit.exists('issue', dhash):
                 es_doc = KibbleBit.get('issue', dhash)
                 if not status_changed(es_doc, doc):
-                    KibbleBit.pprint("change %s seen already and status unchanged. Skipping." % issue['id'])
+                    #KibbleBit.pprint("change %s seen already and status unchanged. Skipping." % issue['id'])
                     continue
 
             update_issue(KibbleBit, doc)


[kibble-scanners] 01/02: we should just pass the response text..

Posted by hu...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kibble-scanners.git

commit 6fc3f4cee4fc3a3fa7ab42ccd119029c3898282d
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Wed Sep 19 09:09:11 2018 +0200

    we should just pass the response text..
---
 src/plugins/scanners/github-issues.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/plugins/scanners/github-issues.py b/src/plugins/scanners/github-issues.py
index 198edc3..2b054cc 100644
--- a/src/plugins/scanners/github-issues.py
+++ b/src/plugins/scanners/github-issues.py
@@ -178,7 +178,7 @@ def scan(KibbleBit, source):
         KibbleBit.pprint("HTTP Error, rate limit exceeded?")
         source['steps']['issues'] = {
             'time': time.time(),
-            'status': 'Issue scan failed at ' + time.strftime("%a, %d %b %Y %H:%M:%S +0000", time.gmtime()) + " - rate limited or no auth used??",
+            'status': 'Issue scan failed at ' + time.strftime("%a, %d %b %Y %H:%M:%S +0000", time.gmtime()) + ": " + e.response.text,
             'running': False,
             'good': False,
         }