Triage Issue

  • This is a helper notebook to go with the triage module
  • The notebook serves the following purposes
    1. It can be used to generate plots showing how well the Kubeflow project is doing triaging issues in a timely fashion
    2. It provides snippets of code that can be executed to triage issues
    3. It provides snippets of code that can be used to collect some of the information needed by the code
  • Issues needing Triage are added to the Needs Triage Project
    • Kubeflow maintainers can look at the Kanban board to identify issues needing triage and triage them

Setup

  • The cells below import required libraries and do some other housekeeping

In [6]:
import matplotlib
import importlib
import logging
import sys
import os
import datetime
from dateutil import parser as dateutil_parser
import glob
import json
import numpy as np
import pandas as pd
# A bit of a hack to set the path correctly
sys.path = [os.path.abspath(os.path.join(os.getcwd(), "..", "..", "py"))] + sys.path

logging.basicConfig(level=logging.INFO,
                  format=('%(levelname)s|%(asctime)s'
                        '|%(message)s|%(pathname)s|%(lineno)d|'),
                datefmt='%Y-%m-%dT%H:%M:%S',
                )
logging.getLogger().setLevel(logging.INFO)

In [2]:
%matplotlib inline

In [7]:
import code_intelligence
from code_intelligence import graphql
from issue_triage import triage
importlib.reload(triage)


Out[7]:
<module 'issue_triage.triage' from '/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py'>

In [4]:
client = graphql.GraphQLClient()

Update Needs Triage For Recently Updated Issues

  • The cells below are used to invoke the code that will update recently updated issues
  • If an issue needs triage it is added to the Needs Triage Kanban board
  • If an issue in the Needs Triage Kanban board has been triaged it is removed from the kanban board

In [8]:
importlib.reload(triage)
triager=triage.IssueTriage()

In [7]:
repos = ["examples", "fairing", "kubeflow", "kfserving", "manifests", "metadata", "pytorch-operator",
         "testing", "tf-operator", "website"]

for name in repos:
    repo = "kubeflow/" + name
    today = datetime.datetime.now()
    today = datetime.datetime(year=today.year, month=today.month, day=today.day)
    
    start_time = today - datetime.timedelta(weeks=24)

    issue_filter = {
        "since": start_time.isoformat(),
    }
    triager.triage(repo, issue_filter=issue_filter)


INFO|2019-11-26T15:37:26|kubeflow/examples has a total of 174 issues|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|374|
INFO|2019-11-26T15:37:26|Processing shard 0|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:37:26|Issue https://github.com/kubeflow/examples/issues/3:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:26|Issue https://github.com/kubeflow/examples/issues/5:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:26|Issue https://github.com/kubeflow/examples/issues/7:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:26|Issue https://github.com/kubeflow/examples/issues/32:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:26|Issue https://github.com/kubeflow/examples/issues/34:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:26|Issue https://github.com/kubeflow/examples/issues/37:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:26|Issue https://github.com/kubeflow/examples/issues/38:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:26|Issue https://github.com/kubeflow/examples/issues/40:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:26|Issue https://github.com/kubeflow/examples/issues/48:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:26|Issue https://github.com/kubeflow/examples/issues/54:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:26|Issue https://github.com/kubeflow/examples/issues/56:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:26|Issue https://github.com/kubeflow/examples/issues/58:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:26|Issue https://github.com/kubeflow/examples/issues/66:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:26|Issue https://github.com/kubeflow/examples/issues/67:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:26|Issue https://github.com/kubeflow/examples/issues/76:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:26|Issue https://github.com/kubeflow/examples/issues/77:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:26|Issue https://github.com/kubeflow/examples/issues/81:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:26|Issue https://github.com/kubeflow/examples/issues/82:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:26|Issue: https://github.com/kubeflow/examples/issues/89; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:37:27|Issue https://github.com/kubeflow/examples/issues/89:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:27|Issue https://github.com/kubeflow/examples/issues/91:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:27|Issue https://github.com/kubeflow/examples/issues/92:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:27|Issue https://github.com/kubeflow/examples/issues/101:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:27|Issue https://github.com/kubeflow/examples/issues/106:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:27|Issue https://github.com/kubeflow/examples/issues/111:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:27|Issue https://github.com/kubeflow/examples/issues/113:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:27|Issue https://github.com/kubeflow/examples/issues/123:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:27|Issue https://github.com/kubeflow/examples/issues/133:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:27|Issue: https://github.com/kubeflow/examples/issues/134; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:37:29|Issue https://github.com/kubeflow/examples/issues/134:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:29|Issue https://github.com/kubeflow/examples/issues/139:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:29|Issue https://github.com/kubeflow/examples/issues/140:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:29|Issue https://github.com/kubeflow/examples/issues/153:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:29|Issue https://github.com/kubeflow/examples/issues/162:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:29|Issue https://github.com/kubeflow/examples/issues/163:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:29|Issue https://github.com/kubeflow/examples/issues/164:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:29|Issue https://github.com/kubeflow/examples/issues/170:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:29|Issue https://github.com/kubeflow/examples/issues/171:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:29|Issue https://github.com/kubeflow/examples/issues/173:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:29|Issue https://github.com/kubeflow/examples/issues/174:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:29|Issue https://github.com/kubeflow/examples/issues/175:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:29|Issue https://github.com/kubeflow/examples/issues/176:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:29|Issue https://github.com/kubeflow/examples/issues/181:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:29|Issue: https://github.com/kubeflow/examples/issues/186; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:37:30|Issue https://github.com/kubeflow/examples/issues/186:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:30|Issue https://github.com/kubeflow/examples/issues/187:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:30|Issue https://github.com/kubeflow/examples/issues/188:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:30|Issue https://github.com/kubeflow/examples/issues/196:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:30|Issue https://github.com/kubeflow/examples/issues/202:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:30|Issue https://github.com/kubeflow/examples/issues/206:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:30|Issue: https://github.com/kubeflow/examples/issues/208; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:37:31|Issue https://github.com/kubeflow/examples/issues/208:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:31|Issue: https://github.com/kubeflow/examples/issues/212; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:37:32|Issue https://github.com/kubeflow/examples/issues/212:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:32|Issue https://github.com/kubeflow/examples/issues/230:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:32|Issue https://github.com/kubeflow/examples/issues/231:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:32|Issue https://github.com/kubeflow/examples/issues/237:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:32|Issue: https://github.com/kubeflow/examples/issues/239; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:37:34|Issue https://github.com/kubeflow/examples/issues/239:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:34|Issue https://github.com/kubeflow/examples/issues/244:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:34|Issue https://github.com/kubeflow/examples/issues/245:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:34|Issue https://github.com/kubeflow/examples/issues/251:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:34|Issue https://github.com/kubeflow/examples/issues/254:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:34|Issue https://github.com/kubeflow/examples/issues/256:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:34|Issue https://github.com/kubeflow/examples/issues/257:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:34|Issue https://github.com/kubeflow/examples/issues/258:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:34|Issue: https://github.com/kubeflow/examples/issues/259; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:37:37|Issue https://github.com/kubeflow/examples/issues/259:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:37|Issue https://github.com/kubeflow/examples/issues/263:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:37|Issue https://github.com/kubeflow/examples/issues/266:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:37|Issue https://github.com/kubeflow/examples/issues/268:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:37|Issue https://github.com/kubeflow/examples/issues/279:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:37|Issue https://github.com/kubeflow/examples/issues/280:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:37|Issue https://github.com/kubeflow/examples/issues/281:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:37|Issue https://github.com/kubeflow/examples/issues/283:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:37|Issue https://github.com/kubeflow/examples/issues/292:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:37|Issue https://github.com/kubeflow/examples/issues/295:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:37|Issue https://github.com/kubeflow/examples/issues/301:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:37|Issue https://github.com/kubeflow/examples/issues/303:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:37|Issue https://github.com/kubeflow/examples/issues/304:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:37|Issue https://github.com/kubeflow/examples/issues/305:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:37|Issue: https://github.com/kubeflow/examples/issues/308; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/308:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/312:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/318:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/319:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/329:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/331:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/335:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/337:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/339:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/345:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/349:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/381:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/391:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/392:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/392 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/393:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/412:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/417:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/435:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/441:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/442:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/443:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/452:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/453:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/454:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/455:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/457:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:38|Issue https://github.com/kubeflow/examples/issues/457 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:37:42|Processing shard 1|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:37:42|Issue https://github.com/kubeflow/examples/issues/458:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:42|Issue https://github.com/kubeflow/examples/issues/459:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:42|Issue https://github.com/kubeflow/examples/issues/461:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:42|Issue https://github.com/kubeflow/examples/issues/464:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:42|Issue https://github.com/kubeflow/examples/issues/466:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:42|Issue https://github.com/kubeflow/examples/issues/471:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:42|Issue https://github.com/kubeflow/examples/issues/483:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:42|Issue https://github.com/kubeflow/examples/issues/494:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:42|Issue https://github.com/kubeflow/examples/issues/503:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:42|Issue https://github.com/kubeflow/examples/issues/504:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:42|Issue https://github.com/kubeflow/examples/issues/513:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:42|Issue: https://github.com/kubeflow/examples/issues/523; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:37:43|Issue https://github.com/kubeflow/examples/issues/523:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:43|Issue https://github.com/kubeflow/examples/issues/529:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:43|Issue https://github.com/kubeflow/examples/issues/533:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:43|Issue https://github.com/kubeflow/examples/issues/534:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:43|Issue https://github.com/kubeflow/examples/issues/545:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:43|Issue https://github.com/kubeflow/examples/issues/547:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:43|Issue https://github.com/kubeflow/examples/issues/549:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:43|Issue https://github.com/kubeflow/examples/issues/551:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:43|Issue https://github.com/kubeflow/examples/issues/553:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:43|Issue https://github.com/kubeflow/examples/issues/557:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:43|Issue https://github.com/kubeflow/examples/issues/571:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:43|Issue https://github.com/kubeflow/examples/issues/574:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:43|Issue: https://github.com/kubeflow/examples/issues/578; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:37:44|Issue https://github.com/kubeflow/examples/issues/578:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:44|Issue https://github.com/kubeflow/examples/issues/580:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:44|Issue https://github.com/kubeflow/examples/issues/583:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:44|Issue https://github.com/kubeflow/examples/issues/585:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:44|Issue https://github.com/kubeflow/examples/issues/586:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:44|Issue https://github.com/kubeflow/examples/issues/587:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:44|Issue: https://github.com/kubeflow/examples/issues/588; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:37:46|Issue https://github.com/kubeflow/examples/issues/588:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:46|Issue https://github.com/kubeflow/examples/issues/591:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:46|Issue https://github.com/kubeflow/examples/issues/597:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:46|Issue https://github.com/kubeflow/examples/issues/600:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:46|Issue https://github.com/kubeflow/examples/issues/601:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:46|Issue https://github.com/kubeflow/examples/issues/604:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:46|Issue https://github.com/kubeflow/examples/issues/606:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:46|Issue https://github.com/kubeflow/examples/issues/607:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:46|Issue https://github.com/kubeflow/examples/issues/608:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:46|Issue: https://github.com/kubeflow/examples/issues/609; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:37:47|Issue https://github.com/kubeflow/examples/issues/609:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:48|Issue https://github.com/kubeflow/examples/issues/612:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:48|Issue https://github.com/kubeflow/examples/issues/613:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:48|Issue https://github.com/kubeflow/examples/issues/614:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:48|Issue https://github.com/kubeflow/examples/issues/617:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:48|Issue: https://github.com/kubeflow/examples/issues/619; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:37:49|Issue https://github.com/kubeflow/examples/issues/619:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:49|Issue https://github.com/kubeflow/examples/issues/620:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:49|Issue https://github.com/kubeflow/examples/issues/622:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:49|Issue https://github.com/kubeflow/examples/issues/623:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:49|Issue https://github.com/kubeflow/examples/issues/624:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:49|Issue https://github.com/kubeflow/examples/issues/627:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:50|Issue https://github.com/kubeflow/examples/issues/629:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:51|Issue https://github.com/kubeflow/examples/issues/631:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:52|Issue https://github.com/kubeflow/examples/issues/632:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:52|Issue https://github.com/kubeflow/examples/issues/634:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:52|Issue https://github.com/kubeflow/examples/issues/635:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:52|Issue https://github.com/kubeflow/examples/issues/636:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:52|Issue https://github.com/kubeflow/examples/issues/639:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:53|Issue https://github.com/kubeflow/examples/issues/641:
state:Issue needs triage:
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:54|Issue https://github.com/kubeflow/examples/issues/644:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:55|Issue https://github.com/kubeflow/examples/issues/645:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:55|Issue https://github.com/kubeflow/examples/issues/650:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:56|Issue https://github.com/kubeflow/examples/issues/652:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:57|Issue https://github.com/kubeflow/examples/issues/654:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:57|Issue https://github.com/kubeflow/examples/issues/655:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:57|Issue https://github.com/kubeflow/examples/issues/656:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:58|Issue https://github.com/kubeflow/examples/issues/657:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:59|Issue https://github.com/kubeflow/examples/issues/661:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:59|Issue https://github.com/kubeflow/examples/issues/665:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:59|Issue https://github.com/kubeflow/examples/issues/670:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:37:59|Issue https://github.com/kubeflow/examples/issues/671:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:00|Issue https://github.com/kubeflow/examples/issues/672:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:01|Issue https://github.com/kubeflow/examples/issues/673:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:01|Issue https://github.com/kubeflow/examples/issues/677:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:01|Issue https://github.com/kubeflow/examples/issues/680:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:02|Issue https://github.com/kubeflow/examples/issues/681:
state:Issue needs triage:
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:03|Issue https://github.com/kubeflow/examples/issues/681 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:38:07|kubeflow/fairing has a total of 96 issues|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|374|
INFO|2019-11-26T15:38:07|Processing shard 0|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:38:07|Issue https://github.com/kubeflow/fairing/issues/22:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:08|Issue https://github.com/kubeflow/fairing/issues/40:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:09|Issue https://github.com/kubeflow/fairing/issues/44:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:10|Issue https://github.com/kubeflow/fairing/issues/80:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:11|Issue https://github.com/kubeflow/fairing/issues/90:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:12|Issue https://github.com/kubeflow/fairing/issues/100:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:13|Issue https://github.com/kubeflow/fairing/issues/102:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:14|Issue https://github.com/kubeflow/fairing/issues/118:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:14|Issue https://github.com/kubeflow/fairing/issues/167:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:15|Issue: https://github.com/kubeflow/fairing/issues/196; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:38:16|Issue https://github.com/kubeflow/fairing/issues/196:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:16|Issue https://github.com/kubeflow/fairing/issues/199:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:16|Issue https://github.com/kubeflow/fairing/issues/200:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:17|Issue https://github.com/kubeflow/fairing/issues/201:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:18|Issue https://github.com/kubeflow/fairing/issues/203:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:18|Issue https://github.com/kubeflow/fairing/issues/208:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:18|Issue https://github.com/kubeflow/fairing/issues/209:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:19|Issue https://github.com/kubeflow/fairing/issues/223:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:20|Issue https://github.com/kubeflow/fairing/issues/227:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:20|Issue https://github.com/kubeflow/fairing/issues/229:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:20|Issue https://github.com/kubeflow/fairing/issues/233:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:20|Issue: https://github.com/kubeflow/fairing/issues/234; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:38:22|Issue https://github.com/kubeflow/fairing/issues/234:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:22|Issue https://github.com/kubeflow/fairing/issues/239:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:22|Issue https://github.com/kubeflow/fairing/issues/243:
state:Issue needs triage:
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:23|Issue https://github.com/kubeflow/fairing/issues/248:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:23|Issue https://github.com/kubeflow/fairing/issues/253:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:23|Issue https://github.com/kubeflow/fairing/issues/254:
state:Issue needs triage:
	 Issue needs an area label
	 Issues with priority in ['priority/p0', 'priority/p1'] need to be assigned to a project
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:24|Issue https://github.com/kubeflow/fairing/issues/256:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:24|Issue https://github.com/kubeflow/fairing/issues/258:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:24|Issue https://github.com/kubeflow/fairing/issues/265:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:25|Issue https://github.com/kubeflow/fairing/issues/273:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:26|Issue https://github.com/kubeflow/fairing/issues/274:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:26|Issue https://github.com/kubeflow/fairing/issues/277:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:26|Issue https://github.com/kubeflow/fairing/issues/282:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:26|Issue https://github.com/kubeflow/fairing/issues/283:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:27|Issue https://github.com/kubeflow/fairing/issues/284:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:27|Issue https://github.com/kubeflow/fairing/issues/286:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:27|Issue https://github.com/kubeflow/fairing/issues/287:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:27|Issue https://github.com/kubeflow/fairing/issues/288:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:27|Issue https://github.com/kubeflow/fairing/issues/289:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:27|Issue https://github.com/kubeflow/fairing/issues/290:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:27|Issue https://github.com/kubeflow/fairing/issues/293:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:27|Issue https://github.com/kubeflow/fairing/issues/295:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:27|Issue https://github.com/kubeflow/fairing/issues/296:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:27|Issue https://github.com/kubeflow/fairing/issues/298:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:27|Issue https://github.com/kubeflow/fairing/issues/302:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:28|Issue https://github.com/kubeflow/fairing/issues/304:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:28|Issue https://github.com/kubeflow/fairing/issues/307:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:29|Issue https://github.com/kubeflow/fairing/issues/308:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:30|Issue https://github.com/kubeflow/fairing/issues/309:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:31|Issue https://github.com/kubeflow/fairing/issues/312:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:31|Issue https://github.com/kubeflow/fairing/issues/314:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:32|Issue https://github.com/kubeflow/fairing/issues/315:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:32|Issue https://github.com/kubeflow/fairing/issues/316:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:32|Issue https://github.com/kubeflow/fairing/issues/319:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:32|Issue https://github.com/kubeflow/fairing/issues/323:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:32|Issue https://github.com/kubeflow/fairing/issues/324:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:32|Issue: https://github.com/kubeflow/fairing/issues/326; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:38:35|Issue https://github.com/kubeflow/fairing/issues/326:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:35|Issue https://github.com/kubeflow/fairing/issues/328:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:35|Issue https://github.com/kubeflow/fairing/issues/329:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:36|Issue https://github.com/kubeflow/fairing/issues/330:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:36|Issue https://github.com/kubeflow/fairing/issues/332:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:37|Issue https://github.com/kubeflow/fairing/issues/336:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:37|Issue https://github.com/kubeflow/fairing/issues/340:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:37|Issue https://github.com/kubeflow/fairing/issues/342:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:37|Issue https://github.com/kubeflow/fairing/issues/344:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:38|Issue https://github.com/kubeflow/fairing/issues/347:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:38|Issue https://github.com/kubeflow/fairing/issues/349:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:38|Issue https://github.com/kubeflow/fairing/issues/357:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:39|Issue https://github.com/kubeflow/fairing/issues/360:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:40|Issue https://github.com/kubeflow/fairing/issues/361:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:41|Issue https://github.com/kubeflow/fairing/issues/366:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:42|Issue https://github.com/kubeflow/fairing/issues/367:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:42|Issue https://github.com/kubeflow/fairing/issues/369:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:43|Issue https://github.com/kubeflow/fairing/issues/370:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:43|Issue https://github.com/kubeflow/fairing/issues/371:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:43|Issue https://github.com/kubeflow/fairing/issues/373:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:43|Issue https://github.com/kubeflow/fairing/issues/375:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:43|Issue https://github.com/kubeflow/fairing/issues/380:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:44|Issue https://github.com/kubeflow/fairing/issues/381:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:45|Issue https://github.com/kubeflow/fairing/issues/382:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:45|Issue https://github.com/kubeflow/fairing/issues/383:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:45|Issue https://github.com/kubeflow/fairing/issues/384:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:46|Issue https://github.com/kubeflow/fairing/issues/385:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:46|Issue https://github.com/kubeflow/fairing/issues/387:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:46|Issue https://github.com/kubeflow/fairing/issues/394:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:46|Issue https://github.com/kubeflow/fairing/issues/403:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:46|Issue https://github.com/kubeflow/fairing/issues/404:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:46|Issue https://github.com/kubeflow/fairing/issues/408:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:47|Issue https://github.com/kubeflow/fairing/issues/409:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:47|Issue https://github.com/kubeflow/fairing/issues/411:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:47|Issue https://github.com/kubeflow/fairing/issues/413:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:47|Issue https://github.com/kubeflow/fairing/issues/417:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:48|Issue https://github.com/kubeflow/fairing/issues/418:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:48|Issue https://github.com/kubeflow/fairing/issues/421:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:48|Issue https://github.com/kubeflow/fairing/issues/425:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:49|Issue https://github.com/kubeflow/fairing/issues/426:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:56|kubeflow/kubeflow has a total of 901 issues|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|374|
INFO|2019-11-26T15:38:56|Processing shard 0|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:38:56|Issue https://github.com/kubeflow/kubeflow/issues/17:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:56|Issue: https://github.com/kubeflow/kubeflow/issues/32; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:38:57|Issue https://github.com/kubeflow/kubeflow/issues/32:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:57|Issue: https://github.com/kubeflow/kubeflow/issues/155; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:38:58|Issue https://github.com/kubeflow/kubeflow/issues/155:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:58|Issue https://github.com/kubeflow/kubeflow/issues/324:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:58|Issue https://github.com/kubeflow/kubeflow/issues/424:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:58|Issue https://github.com/kubeflow/kubeflow/issues/767:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:58|Issue https://github.com/kubeflow/kubeflow/issues/847:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:58|Issue https://github.com/kubeflow/kubeflow/issues/865:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:38:58|Issue: https://github.com/kubeflow/kubeflow/issues/1057; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:00|Issue https://github.com/kubeflow/kubeflow/issues/1057:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:00|Issue: https://github.com/kubeflow/kubeflow/issues/1074; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:02|Issue https://github.com/kubeflow/kubeflow/issues/1074:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:02|Issue https://github.com/kubeflow/kubeflow/issues/1116:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:02|Issue https://github.com/kubeflow/kubeflow/issues/1148:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:02|Issue: https://github.com/kubeflow/kubeflow/issues/1189; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:03|Issue https://github.com/kubeflow/kubeflow/issues/1189:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:03|Issue https://github.com/kubeflow/kubeflow/issues/1241:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:03|Issue: https://github.com/kubeflow/kubeflow/issues/1254; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:04|Issue https://github.com/kubeflow/kubeflow/issues/1254:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:04|Issue https://github.com/kubeflow/kubeflow/issues/1295:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:04|Issue: https://github.com/kubeflow/kubeflow/issues/1394; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:05|Issue https://github.com/kubeflow/kubeflow/issues/1394:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:05|Issue: https://github.com/kubeflow/kubeflow/issues/1398; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:07|Issue https://github.com/kubeflow/kubeflow/issues/1398:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:07|Issue: https://github.com/kubeflow/kubeflow/issues/1409; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:08|Issue https://github.com/kubeflow/kubeflow/issues/1409:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:08|Issue https://github.com/kubeflow/kubeflow/issues/1416:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:08|Issue https://github.com/kubeflow/kubeflow/issues/1522:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:08|Issue: https://github.com/kubeflow/kubeflow/issues/1583; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:09|Issue https://github.com/kubeflow/kubeflow/issues/1583:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:09|Issue: https://github.com/kubeflow/kubeflow/issues/1630; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:11|Issue https://github.com/kubeflow/kubeflow/issues/1630:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:11|Issue https://github.com/kubeflow/kubeflow/issues/1668:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:11|Issue https://github.com/kubeflow/kubeflow/issues/1712:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:11|Issue https://github.com/kubeflow/kubeflow/issues/1749:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:11|Issue https://github.com/kubeflow/kubeflow/issues/1751:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:11|Issue: https://github.com/kubeflow/kubeflow/issues/1803; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:12|Issue https://github.com/kubeflow/kubeflow/issues/1803:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:12|Issue https://github.com/kubeflow/kubeflow/issues/1848:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:12|Issue https://github.com/kubeflow/kubeflow/issues/1881:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:12|Issue: https://github.com/kubeflow/kubeflow/issues/1915; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:13|Issue https://github.com/kubeflow/kubeflow/issues/1915:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:13|Issue https://github.com/kubeflow/kubeflow/issues/1931:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:13|Issue https://github.com/kubeflow/kubeflow/issues/1969:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:13|Issue https://github.com/kubeflow/kubeflow/issues/1970:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:13|Issue https://github.com/kubeflow/kubeflow/issues/1971:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:13|Issue https://github.com/kubeflow/kubeflow/issues/2010:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:13|Issue: https://github.com/kubeflow/kubeflow/issues/2029; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:14|Issue https://github.com/kubeflow/kubeflow/issues/2029:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:14|Issue: https://github.com/kubeflow/kubeflow/issues/2141; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:16|Issue https://github.com/kubeflow/kubeflow/issues/2141:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:16|Issue: https://github.com/kubeflow/kubeflow/issues/2152; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:18|Issue https://github.com/kubeflow/kubeflow/issues/2152:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:18|Issue https://github.com/kubeflow/kubeflow/issues/2178:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:18|Issue https://github.com/kubeflow/kubeflow/issues/2195:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:18|Issue https://github.com/kubeflow/kubeflow/issues/2223:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:18|Issue: https://github.com/kubeflow/kubeflow/issues/2226; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:20|Issue https://github.com/kubeflow/kubeflow/issues/2226:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:20|Issue: https://github.com/kubeflow/kubeflow/issues/2232; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:21|Issue https://github.com/kubeflow/kubeflow/issues/2232:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:21|Issue https://github.com/kubeflow/kubeflow/issues/2267:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:21|Issue: https://github.com/kubeflow/kubeflow/issues/2271; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:22|Issue https://github.com/kubeflow/kubeflow/issues/2271:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:22|Issue https://github.com/kubeflow/kubeflow/issues/2287:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:22|Issue: https://github.com/kubeflow/kubeflow/issues/2311; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:25|Issue https://github.com/kubeflow/kubeflow/issues/2311:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:25|Issue: https://github.com/kubeflow/kubeflow/issues/2337; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:26|Issue https://github.com/kubeflow/kubeflow/issues/2337:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:26|Issue: https://github.com/kubeflow/kubeflow/issues/2347; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:27|Issue https://github.com/kubeflow/kubeflow/issues/2347:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:27|Issue: https://github.com/kubeflow/kubeflow/issues/2358; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:29|Issue https://github.com/kubeflow/kubeflow/issues/2358:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:29|Issue https://github.com/kubeflow/kubeflow/issues/2380:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:29|Issue https://github.com/kubeflow/kubeflow/issues/2381:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:29|Issue https://github.com/kubeflow/kubeflow/issues/2383:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:29|Issue https://github.com/kubeflow/kubeflow/issues/2387:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:29|Issue https://github.com/kubeflow/kubeflow/issues/2402:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:29|Issue https://github.com/kubeflow/kubeflow/issues/2408:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:29|Issue https://github.com/kubeflow/kubeflow/issues/2412:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:29|Issue https://github.com/kubeflow/kubeflow/issues/2413:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:29|Issue https://github.com/kubeflow/kubeflow/issues/2415:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:29|Issue: https://github.com/kubeflow/kubeflow/issues/2417; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:30|Issue https://github.com/kubeflow/kubeflow/issues/2417:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:30|Issue: https://github.com/kubeflow/kubeflow/issues/2422; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:31|Issue https://github.com/kubeflow/kubeflow/issues/2422:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:31|Issue: https://github.com/kubeflow/kubeflow/issues/2444; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:32|Issue https://github.com/kubeflow/kubeflow/issues/2444:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:32|Issue https://github.com/kubeflow/kubeflow/issues/2465:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:32|Issue: https://github.com/kubeflow/kubeflow/issues/2475; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:33|Issue https://github.com/kubeflow/kubeflow/issues/2475:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:33|Issue https://github.com/kubeflow/kubeflow/issues/2476:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:33|Issue: https://github.com/kubeflow/kubeflow/issues/2487; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:34|Issue https://github.com/kubeflow/kubeflow/issues/2487:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:34|Issue https://github.com/kubeflow/kubeflow/issues/2509:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:34|Issue https://github.com/kubeflow/kubeflow/issues/2510:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:34|Issue: https://github.com/kubeflow/kubeflow/issues/2521; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:35|Issue https://github.com/kubeflow/kubeflow/issues/2521:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:35|Issue: https://github.com/kubeflow/kubeflow/issues/2522; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:36|Issue https://github.com/kubeflow/kubeflow/issues/2522:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:36|Issue https://github.com/kubeflow/kubeflow/issues/2526:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:36|Issue https://github.com/kubeflow/kubeflow/issues/2528:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:36|Issue https://github.com/kubeflow/kubeflow/issues/2531:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:36|Issue https://github.com/kubeflow/kubeflow/issues/2545:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:36|Issue: https://github.com/kubeflow/kubeflow/issues/2585; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:38|Issue https://github.com/kubeflow/kubeflow/issues/2585:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:38|Issue https://github.com/kubeflow/kubeflow/issues/2586:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:38|Issue https://github.com/kubeflow/kubeflow/issues/2621:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:38|Issue https://github.com/kubeflow/kubeflow/issues/2624:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:38|Issue https://github.com/kubeflow/kubeflow/issues/2628:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:38|Issue: https://github.com/kubeflow/kubeflow/issues/2630; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:39|Issue https://github.com/kubeflow/kubeflow/issues/2630:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:39|Issue: https://github.com/kubeflow/kubeflow/issues/2633; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:41|Issue https://github.com/kubeflow/kubeflow/issues/2633:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:41|Issue https://github.com/kubeflow/kubeflow/issues/2636:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:41|Issue https://github.com/kubeflow/kubeflow/issues/2644:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:41|Issue https://github.com/kubeflow/kubeflow/issues/2663:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:41|Issue https://github.com/kubeflow/kubeflow/issues/2664:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:41|Issue https://github.com/kubeflow/kubeflow/issues/2665:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:41|Issue: https://github.com/kubeflow/kubeflow/issues/2682; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:42|Issue https://github.com/kubeflow/kubeflow/issues/2682:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:42|Issue https://github.com/kubeflow/kubeflow/issues/2686:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:42|Issue https://github.com/kubeflow/kubeflow/issues/2698:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:42|Issue https://github.com/kubeflow/kubeflow/issues/2700:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:42|Issue https://github.com/kubeflow/kubeflow/issues/2703:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:42|Issue https://github.com/kubeflow/kubeflow/issues/2712:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:42|Issue: https://github.com/kubeflow/kubeflow/issues/2716; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:43|Issue https://github.com/kubeflow/kubeflow/issues/2716:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:43|Issue https://github.com/kubeflow/kubeflow/issues/2724:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:43|Issue https://github.com/kubeflow/kubeflow/issues/2727:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:43|Issue https://github.com/kubeflow/kubeflow/issues/2734:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:43|Issue https://github.com/kubeflow/kubeflow/issues/2735:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:43|Issue https://github.com/kubeflow/kubeflow/issues/2736:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:43|Issue: https://github.com/kubeflow/kubeflow/issues/2741; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:44|Issue https://github.com/kubeflow/kubeflow/issues/2741:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:50|Processing shard 1|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:39:50|Issue https://github.com/kubeflow/kubeflow/issues/2754:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:50|Issue: https://github.com/kubeflow/kubeflow/issues/2766; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:51|Issue https://github.com/kubeflow/kubeflow/issues/2766:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:51|Issue https://github.com/kubeflow/kubeflow/issues/2767:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:51|Issue https://github.com/kubeflow/kubeflow/issues/2789:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:51|Issue https://github.com/kubeflow/kubeflow/issues/2790:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:51|Issue: https://github.com/kubeflow/kubeflow/issues/2797; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:52|Issue https://github.com/kubeflow/kubeflow/issues/2797:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:52|Issue https://github.com/kubeflow/kubeflow/issues/2799:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:52|Issue https://github.com/kubeflow/kubeflow/issues/2804:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:52|Issue https://github.com/kubeflow/kubeflow/issues/2811:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:52|Issue https://github.com/kubeflow/kubeflow/issues/2812:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:52|Issue https://github.com/kubeflow/kubeflow/issues/2817:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:52|Issue https://github.com/kubeflow/kubeflow/issues/2818:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:52|Issue https://github.com/kubeflow/kubeflow/issues/2820:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:52|Issue https://github.com/kubeflow/kubeflow/issues/2825:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:52|Issue https://github.com/kubeflow/kubeflow/issues/2830:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:52|Issue https://github.com/kubeflow/kubeflow/issues/2831:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:52|Issue https://github.com/kubeflow/kubeflow/issues/2842:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:52|Issue https://github.com/kubeflow/kubeflow/issues/2843:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:52|Issue https://github.com/kubeflow/kubeflow/issues/2846:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:52|Issue: https://github.com/kubeflow/kubeflow/issues/2852; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:53|Issue https://github.com/kubeflow/kubeflow/issues/2852:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:53|Issue https://github.com/kubeflow/kubeflow/issues/2860:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:53|Issue: https://github.com/kubeflow/kubeflow/issues/2863; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:55|Issue https://github.com/kubeflow/kubeflow/issues/2863:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:55|Issue https://github.com/kubeflow/kubeflow/issues/2866:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:55|Issue https://github.com/kubeflow/kubeflow/issues/2870:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:55|Issue https://github.com/kubeflow/kubeflow/issues/2871:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:55|Issue https://github.com/kubeflow/kubeflow/issues/2872:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:55|Issue https://github.com/kubeflow/kubeflow/issues/2882:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:55|Issue: https://github.com/kubeflow/kubeflow/issues/2885; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:56|Issue https://github.com/kubeflow/kubeflow/issues/2885:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:56|Issue https://github.com/kubeflow/kubeflow/issues/2886:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:56|Issue https://github.com/kubeflow/kubeflow/issues/2888:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:56|Issue: https://github.com/kubeflow/kubeflow/issues/2889; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:57|Issue https://github.com/kubeflow/kubeflow/issues/2889:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:57|Issue https://github.com/kubeflow/kubeflow/issues/2905:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:57|Issue https://github.com/kubeflow/kubeflow/issues/2910:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:57|Issue https://github.com/kubeflow/kubeflow/issues/2927:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:57|Issue https://github.com/kubeflow/kubeflow/issues/2936:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:57|Issue https://github.com/kubeflow/kubeflow/issues/2954:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:57|Issue https://github.com/kubeflow/kubeflow/issues/2959:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:57|Issue https://github.com/kubeflow/kubeflow/issues/2961:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:57|Issue https://github.com/kubeflow/kubeflow/issues/2965:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:57|Issue: https://github.com/kubeflow/kubeflow/issues/2969; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:39:59|Issue https://github.com/kubeflow/kubeflow/issues/2969:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:39:59|Issue: https://github.com/kubeflow/kubeflow/issues/2973; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:00|Issue https://github.com/kubeflow/kubeflow/issues/2973:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:00|Issue https://github.com/kubeflow/kubeflow/issues/2975:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:00|Issue: https://github.com/kubeflow/kubeflow/issues/2976; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:01|Issue https://github.com/kubeflow/kubeflow/issues/2976:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:01|Issue https://github.com/kubeflow/kubeflow/issues/2980:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:01|Issue: https://github.com/kubeflow/kubeflow/issues/2981; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:03|Issue https://github.com/kubeflow/kubeflow/issues/2981:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:03|Issue https://github.com/kubeflow/kubeflow/issues/2989:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:03|Issue: https://github.com/kubeflow/kubeflow/issues/2992; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:04|Issue https://github.com/kubeflow/kubeflow/issues/2992:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:04|Issue https://github.com/kubeflow/kubeflow/issues/2994:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:04|Issue https://github.com/kubeflow/kubeflow/issues/2995:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:04|Issue https://github.com/kubeflow/kubeflow/issues/2997:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:04|Issue: https://github.com/kubeflow/kubeflow/issues/2998; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:06|Issue https://github.com/kubeflow/kubeflow/issues/2998:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:06|Issue https://github.com/kubeflow/kubeflow/issues/3003:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:06|Issue https://github.com/kubeflow/kubeflow/issues/3004:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:06|Issue https://github.com/kubeflow/kubeflow/issues/3005:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:06|Issue: https://github.com/kubeflow/kubeflow/issues/3007; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:07|Issue https://github.com/kubeflow/kubeflow/issues/3007:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:07|Issue: https://github.com/kubeflow/kubeflow/issues/3009; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:08|Issue https://github.com/kubeflow/kubeflow/issues/3009:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:08|Issue https://github.com/kubeflow/kubeflow/issues/3009 remove from triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2019-11-26T15:40:09|Issue https://github.com/kubeflow/kubeflow/issues/3018:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:09|Issue: https://github.com/kubeflow/kubeflow/issues/3020; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:10|Issue https://github.com/kubeflow/kubeflow/issues/3020:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:10|Issue https://github.com/kubeflow/kubeflow/issues/3023:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:10|Issue https://github.com/kubeflow/kubeflow/issues/3024:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:10|Issue https://github.com/kubeflow/kubeflow/issues/3027:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:10|Issue https://github.com/kubeflow/kubeflow/issues/3029:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:10|Issue https://github.com/kubeflow/kubeflow/issues/3030:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:10|Issue https://github.com/kubeflow/kubeflow/issues/3031:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:10|Issue https://github.com/kubeflow/kubeflow/issues/3032:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:10|Issue: https://github.com/kubeflow/kubeflow/issues/3035; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:11|Issue https://github.com/kubeflow/kubeflow/issues/3035:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:11|Issue https://github.com/kubeflow/kubeflow/issues/3041:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:11|Issue: https://github.com/kubeflow/kubeflow/issues/3042; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:12|Issue https://github.com/kubeflow/kubeflow/issues/3042:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:12|Issue: https://github.com/kubeflow/kubeflow/issues/3048; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:13|Issue https://github.com/kubeflow/kubeflow/issues/3048:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:13|Issue https://github.com/kubeflow/kubeflow/issues/3056:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:13|Issue https://github.com/kubeflow/kubeflow/issues/3057:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:13|Issue https://github.com/kubeflow/kubeflow/issues/3058:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:13|Issue https://github.com/kubeflow/kubeflow/issues/3061:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:13|Issue https://github.com/kubeflow/kubeflow/issues/3071:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:13|Issue https://github.com/kubeflow/kubeflow/issues/3073:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:13|Issue: https://github.com/kubeflow/kubeflow/issues/3079; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:14|Issue https://github.com/kubeflow/kubeflow/issues/3079:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:14|Issue: https://github.com/kubeflow/kubeflow/issues/3082; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:15|Issue https://github.com/kubeflow/kubeflow/issues/3082:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:15|Issue https://github.com/kubeflow/kubeflow/issues/3085:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:15|Issue https://github.com/kubeflow/kubeflow/issues/3086:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:15|Issue: https://github.com/kubeflow/kubeflow/issues/3091; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:18|Issue https://github.com/kubeflow/kubeflow/issues/3091:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:18|Issue https://github.com/kubeflow/kubeflow/issues/3092:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:18|Issue: https://github.com/kubeflow/kubeflow/issues/3096; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:19|Issue https://github.com/kubeflow/kubeflow/issues/3096:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:19|Issue https://github.com/kubeflow/kubeflow/issues/3098:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:19|Issue https://github.com/kubeflow/kubeflow/issues/3099:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:19|Issue https://github.com/kubeflow/kubeflow/issues/3105:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:19|Issue https://github.com/kubeflow/kubeflow/issues/3109:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:19|Issue https://github.com/kubeflow/kubeflow/issues/3112:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:19|Issue https://github.com/kubeflow/kubeflow/issues/3118:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:19|Issue https://github.com/kubeflow/kubeflow/issues/3122:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:19|Issue https://github.com/kubeflow/kubeflow/issues/3129:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:19|Issue https://github.com/kubeflow/kubeflow/issues/3130:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:19|Issue: https://github.com/kubeflow/kubeflow/issues/3131; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:20|Issue https://github.com/kubeflow/kubeflow/issues/3131:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:20|Issue: https://github.com/kubeflow/kubeflow/issues/3132; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:21|Issue https://github.com/kubeflow/kubeflow/issues/3132:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:21|Issue https://github.com/kubeflow/kubeflow/issues/3133:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:21|Issue https://github.com/kubeflow/kubeflow/issues/3135:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:21|Issue https://github.com/kubeflow/kubeflow/issues/3136:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:21|Issue https://github.com/kubeflow/kubeflow/issues/3140:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:21|Issue https://github.com/kubeflow/kubeflow/issues/3145:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:21|Issue: https://github.com/kubeflow/kubeflow/issues/3150; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:22|Issue https://github.com/kubeflow/kubeflow/issues/3150:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:22|Issue: https://github.com/kubeflow/kubeflow/issues/3151; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:23|Issue https://github.com/kubeflow/kubeflow/issues/3151:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:29|Processing shard 2|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:40:29|Issue https://github.com/kubeflow/kubeflow/issues/3152:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:29|Issue https://github.com/kubeflow/kubeflow/issues/3156:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:29|Issue https://github.com/kubeflow/kubeflow/issues/3162:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:29|Issue https://github.com/kubeflow/kubeflow/issues/3163:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:29|Issue https://github.com/kubeflow/kubeflow/issues/3164:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:29|Issue https://github.com/kubeflow/kubeflow/issues/3166:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:29|Issue https://github.com/kubeflow/kubeflow/issues/3167:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:29|Issue https://github.com/kubeflow/kubeflow/issues/3173:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:29|Issue: https://github.com/kubeflow/kubeflow/issues/3175; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:30|Issue https://github.com/kubeflow/kubeflow/issues/3175:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:30|Issue https://github.com/kubeflow/kubeflow/issues/3181:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:30|Issue https://github.com/kubeflow/kubeflow/issues/3182:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:30|Issue https://github.com/kubeflow/kubeflow/issues/3198:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:30|Issue https://github.com/kubeflow/kubeflow/issues/3199:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:30|Issue https://github.com/kubeflow/kubeflow/issues/3203:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:30|Issue https://github.com/kubeflow/kubeflow/issues/3204:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:30|Issue https://github.com/kubeflow/kubeflow/issues/3206:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:30|Issue: https://github.com/kubeflow/kubeflow/issues/3210; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:32|Issue https://github.com/kubeflow/kubeflow/issues/3210:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:32|Issue https://github.com/kubeflow/kubeflow/issues/3213:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:32|Issue: https://github.com/kubeflow/kubeflow/issues/3219; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:33|Issue https://github.com/kubeflow/kubeflow/issues/3219:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:33|Issue https://github.com/kubeflow/kubeflow/issues/3223:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:33|Issue https://github.com/kubeflow/kubeflow/issues/3226:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:33|Issue: https://github.com/kubeflow/kubeflow/issues/3230; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:34|Issue https://github.com/kubeflow/kubeflow/issues/3230:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:34|Issue https://github.com/kubeflow/kubeflow/issues/3232:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:34|Issue https://github.com/kubeflow/kubeflow/issues/3242:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:34|Issue https://github.com/kubeflow/kubeflow/issues/3248:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:34|Issue https://github.com/kubeflow/kubeflow/issues/3252:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:34|Issue https://github.com/kubeflow/kubeflow/issues/3256:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:34|Issue: https://github.com/kubeflow/kubeflow/issues/3259; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:35|Issue https://github.com/kubeflow/kubeflow/issues/3259:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:35|Issue https://github.com/kubeflow/kubeflow/issues/3261:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:35|Issue https://github.com/kubeflow/kubeflow/issues/3264:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:35|Issue https://github.com/kubeflow/kubeflow/issues/3265:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:35|Issue https://github.com/kubeflow/kubeflow/issues/3277:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:35|Issue: https://github.com/kubeflow/kubeflow/issues/3282; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:36|Issue https://github.com/kubeflow/kubeflow/issues/3282:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:36|Issue https://github.com/kubeflow/kubeflow/issues/3287:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:36|Issue https://github.com/kubeflow/kubeflow/issues/3295:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:36|Issue https://github.com/kubeflow/kubeflow/issues/3296:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:36|Issue https://github.com/kubeflow/kubeflow/issues/3299:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:36|Issue https://github.com/kubeflow/kubeflow/issues/3300:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:36|Issue https://github.com/kubeflow/kubeflow/issues/3306:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:36|Issue https://github.com/kubeflow/kubeflow/issues/3310:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:36|Issue https://github.com/kubeflow/kubeflow/issues/3312:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:36|Issue https://github.com/kubeflow/kubeflow/issues/3316:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:36|Issue https://github.com/kubeflow/kubeflow/issues/3330:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:36|Issue https://github.com/kubeflow/kubeflow/issues/3331:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:36|Issue: https://github.com/kubeflow/kubeflow/issues/3332; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:37|Issue https://github.com/kubeflow/kubeflow/issues/3332:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:37|Issue https://github.com/kubeflow/kubeflow/issues/3336:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:37|Issue https://github.com/kubeflow/kubeflow/issues/3339:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:37|Issue https://github.com/kubeflow/kubeflow/issues/3347:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:37|Issue https://github.com/kubeflow/kubeflow/issues/3348:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:37|Issue https://github.com/kubeflow/kubeflow/issues/3353:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:37|Issue https://github.com/kubeflow/kubeflow/issues/3357:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:37|Issue https://github.com/kubeflow/kubeflow/issues/3358:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:37|Issue: https://github.com/kubeflow/kubeflow/issues/3359; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:39|Issue https://github.com/kubeflow/kubeflow/issues/3359:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:39|Issue https://github.com/kubeflow/kubeflow/issues/3361:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:39|Issue https://github.com/kubeflow/kubeflow/issues/3362:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:39|Issue https://github.com/kubeflow/kubeflow/issues/3363:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:39|Issue https://github.com/kubeflow/kubeflow/issues/3366:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:39|Issue https://github.com/kubeflow/kubeflow/issues/3367:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:39|Issue https://github.com/kubeflow/kubeflow/issues/3368:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:39|Issue https://github.com/kubeflow/kubeflow/issues/3371:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:39|Issue https://github.com/kubeflow/kubeflow/issues/3380:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:39|Issue https://github.com/kubeflow/kubeflow/issues/3382:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:39|Issue https://github.com/kubeflow/kubeflow/issues/3383:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:39|Issue https://github.com/kubeflow/kubeflow/issues/3389:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:39|Issue https://github.com/kubeflow/kubeflow/issues/3391:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:39|Issue https://github.com/kubeflow/kubeflow/issues/3392:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:39|Issue: https://github.com/kubeflow/kubeflow/issues/3396; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:40|Issue https://github.com/kubeflow/kubeflow/issues/3396:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:40|Issue https://github.com/kubeflow/kubeflow/issues/3398:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:40|Issue https://github.com/kubeflow/kubeflow/issues/3403:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:40|Issue https://github.com/kubeflow/kubeflow/issues/3405:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:40|Issue https://github.com/kubeflow/kubeflow/issues/3406:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:40|Issue: https://github.com/kubeflow/kubeflow/issues/3409; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:41|Issue https://github.com/kubeflow/kubeflow/issues/3409:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:41|Issue https://github.com/kubeflow/kubeflow/issues/3410:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:41|Issue https://github.com/kubeflow/kubeflow/issues/3411:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:41|Issue: https://github.com/kubeflow/kubeflow/issues/3414; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:43|Issue https://github.com/kubeflow/kubeflow/issues/3414:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:43|Issue https://github.com/kubeflow/kubeflow/issues/3416:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:43|Issue: https://github.com/kubeflow/kubeflow/issues/3417; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:44|Issue https://github.com/kubeflow/kubeflow/issues/3417:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:44|Issue https://github.com/kubeflow/kubeflow/issues/3419:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:44|Issue https://github.com/kubeflow/kubeflow/issues/3421:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:44|Issue https://github.com/kubeflow/kubeflow/issues/3422:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:44|Issue https://github.com/kubeflow/kubeflow/issues/3425:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:44|Issue https://github.com/kubeflow/kubeflow/issues/3426:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:44|Issue https://github.com/kubeflow/kubeflow/issues/3431:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:44|Issue https://github.com/kubeflow/kubeflow/issues/3433:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:44|Issue https://github.com/kubeflow/kubeflow/issues/3436:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:44|Issue: https://github.com/kubeflow/kubeflow/issues/3437; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:45|Issue https://github.com/kubeflow/kubeflow/issues/3437:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:45|Issue: https://github.com/kubeflow/kubeflow/issues/3439; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:46|Issue https://github.com/kubeflow/kubeflow/issues/3439:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:46|Issue: https://github.com/kubeflow/kubeflow/issues/3441; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:47|Issue https://github.com/kubeflow/kubeflow/issues/3441:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:47|Issue https://github.com/kubeflow/kubeflow/issues/3442:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:47|Issue https://github.com/kubeflow/kubeflow/issues/3446:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:47|Issue https://github.com/kubeflow/kubeflow/issues/3449:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:47|Issue https://github.com/kubeflow/kubeflow/issues/3450:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:47|Issue https://github.com/kubeflow/kubeflow/issues/3451:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:47|Issue https://github.com/kubeflow/kubeflow/issues/3452:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:47|Issue https://github.com/kubeflow/kubeflow/issues/3453:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:47|Issue: https://github.com/kubeflow/kubeflow/issues/3456; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:49|Issue https://github.com/kubeflow/kubeflow/issues/3456:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:49|Issue https://github.com/kubeflow/kubeflow/issues/3458:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:49|Issue https://github.com/kubeflow/kubeflow/issues/3459:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:49|Issue https://github.com/kubeflow/kubeflow/issues/3462:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:49|Issue https://github.com/kubeflow/kubeflow/issues/3465:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:55|Processing shard 3|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:40:55|Issue https://github.com/kubeflow/kubeflow/issues/3467:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:56|Issue https://github.com/kubeflow/kubeflow/issues/3469:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:56|Issue: https://github.com/kubeflow/kubeflow/issues/3471; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:57|Issue https://github.com/kubeflow/kubeflow/issues/3471:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:57|Issue https://github.com/kubeflow/kubeflow/issues/3475:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:57|Issue https://github.com/kubeflow/kubeflow/issues/3476:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:57|Issue https://github.com/kubeflow/kubeflow/issues/3477:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:57|Issue: https://github.com/kubeflow/kubeflow/issues/3478; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:58|Issue https://github.com/kubeflow/kubeflow/issues/3478:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:58|Issue https://github.com/kubeflow/kubeflow/issues/3481:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:58|Issue: https://github.com/kubeflow/kubeflow/issues/3484; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:40:59|Issue https://github.com/kubeflow/kubeflow/issues/3484:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:59|Issue https://github.com/kubeflow/kubeflow/issues/3485:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:40:59|Issue: https://github.com/kubeflow/kubeflow/issues/3487; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:00|Issue https://github.com/kubeflow/kubeflow/issues/3487:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:00|Issue https://github.com/kubeflow/kubeflow/issues/3489:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:00|Issue: https://github.com/kubeflow/kubeflow/issues/3490; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:02|Issue https://github.com/kubeflow/kubeflow/issues/3490:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:02|Issue: https://github.com/kubeflow/kubeflow/issues/3491; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:03|Issue https://github.com/kubeflow/kubeflow/issues/3491:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:03|Issue https://github.com/kubeflow/kubeflow/issues/3494:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:03|Issue: https://github.com/kubeflow/kubeflow/issues/3496; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:04|Issue https://github.com/kubeflow/kubeflow/issues/3496:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:04|Issue: https://github.com/kubeflow/kubeflow/issues/3497; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:06|Issue https://github.com/kubeflow/kubeflow/issues/3497:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:06|Issue https://github.com/kubeflow/kubeflow/issues/3498:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:06|Issue https://github.com/kubeflow/kubeflow/issues/3501:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:06|Issue: https://github.com/kubeflow/kubeflow/issues/3502; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:07|Issue https://github.com/kubeflow/kubeflow/issues/3502:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:07|Issue https://github.com/kubeflow/kubeflow/issues/3504:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:07|Issue https://github.com/kubeflow/kubeflow/issues/3505:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:07|Issue https://github.com/kubeflow/kubeflow/issues/3509:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:07|Issue https://github.com/kubeflow/kubeflow/issues/3511:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:07|Issue https://github.com/kubeflow/kubeflow/issues/3512:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:07|Issue https://github.com/kubeflow/kubeflow/issues/3512 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:41:07|Issue https://github.com/kubeflow/kubeflow/issues/3516:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:07|Issue https://github.com/kubeflow/kubeflow/issues/3517:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:07|Issue: https://github.com/kubeflow/kubeflow/issues/3518; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:10|Issue https://github.com/kubeflow/kubeflow/issues/3518:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:10|Issue https://github.com/kubeflow/kubeflow/issues/3519:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:10|Issue https://github.com/kubeflow/kubeflow/issues/3520:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:10|Issue https://github.com/kubeflow/kubeflow/issues/3521:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:10|Issue https://github.com/kubeflow/kubeflow/issues/3523:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:10|Issue https://github.com/kubeflow/kubeflow/issues/3524:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:10|Issue https://github.com/kubeflow/kubeflow/issues/3526:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:10|Issue https://github.com/kubeflow/kubeflow/issues/3529:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:10|Issue https://github.com/kubeflow/kubeflow/issues/3530:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:10|Issue: https://github.com/kubeflow/kubeflow/issues/3531; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:11|Issue https://github.com/kubeflow/kubeflow/issues/3531:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:11|Issue https://github.com/kubeflow/kubeflow/issues/3535:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:11|Issue https://github.com/kubeflow/kubeflow/issues/3536:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:11|Issue https://github.com/kubeflow/kubeflow/issues/3539:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:11|Issue https://github.com/kubeflow/kubeflow/issues/3540:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:11|Issue https://github.com/kubeflow/kubeflow/issues/3542:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:11|Issue https://github.com/kubeflow/kubeflow/issues/3543:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:11|Issue: https://github.com/kubeflow/kubeflow/issues/3544; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:12|Issue https://github.com/kubeflow/kubeflow/issues/3544:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:12|Issue https://github.com/kubeflow/kubeflow/issues/3545:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:12|Issue https://github.com/kubeflow/kubeflow/issues/3546:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:12|Issue https://github.com/kubeflow/kubeflow/issues/3547:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:12|Issue https://github.com/kubeflow/kubeflow/issues/3549:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:12|Issue https://github.com/kubeflow/kubeflow/issues/3550:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:12|Issue https://github.com/kubeflow/kubeflow/issues/3552:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:12|Issue: https://github.com/kubeflow/kubeflow/issues/3553; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:13|Issue https://github.com/kubeflow/kubeflow/issues/3553:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:13|Issue: https://github.com/kubeflow/kubeflow/issues/3554; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:15|Issue https://github.com/kubeflow/kubeflow/issues/3554:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:15|Issue: https://github.com/kubeflow/kubeflow/issues/3555; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:16|Issue https://github.com/kubeflow/kubeflow/issues/3555:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:16|Issue https://github.com/kubeflow/kubeflow/issues/3556:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:16|Issue https://github.com/kubeflow/kubeflow/issues/3558:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:16|Issue https://github.com/kubeflow/kubeflow/issues/3559:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:16|Issue: https://github.com/kubeflow/kubeflow/issues/3560; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:17|Issue https://github.com/kubeflow/kubeflow/issues/3560:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:17|Issue https://github.com/kubeflow/kubeflow/issues/3561:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:17|Issue: https://github.com/kubeflow/kubeflow/issues/3562; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:18|Issue https://github.com/kubeflow/kubeflow/issues/3562:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:18|Issue https://github.com/kubeflow/kubeflow/issues/3563:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:18|Issue https://github.com/kubeflow/kubeflow/issues/3566:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:18|Issue https://github.com/kubeflow/kubeflow/issues/3567:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:18|Issue https://github.com/kubeflow/kubeflow/issues/3568:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:18|Issue: https://github.com/kubeflow/kubeflow/issues/3571; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:19|Issue https://github.com/kubeflow/kubeflow/issues/3571:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:19|Issue https://github.com/kubeflow/kubeflow/issues/3572:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:19|Issue https://github.com/kubeflow/kubeflow/issues/3573:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:19|Issue https://github.com/kubeflow/kubeflow/issues/3574:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:19|Issue https://github.com/kubeflow/kubeflow/issues/3575:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:19|Issue https://github.com/kubeflow/kubeflow/issues/3576:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:19|Issue: https://github.com/kubeflow/kubeflow/issues/3578; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:20|Issue https://github.com/kubeflow/kubeflow/issues/3578:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:20|Issue https://github.com/kubeflow/kubeflow/issues/3579:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:20|Issue https://github.com/kubeflow/kubeflow/issues/3580:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:20|Issue https://github.com/kubeflow/kubeflow/issues/3583:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:20|Issue https://github.com/kubeflow/kubeflow/issues/3584:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:20|Issue https://github.com/kubeflow/kubeflow/issues/3585:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:20|Issue https://github.com/kubeflow/kubeflow/issues/3586:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:20|Issue https://github.com/kubeflow/kubeflow/issues/3589:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:20|Issue https://github.com/kubeflow/kubeflow/issues/3591:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:20|Issue https://github.com/kubeflow/kubeflow/issues/3592:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:20|Issue https://github.com/kubeflow/kubeflow/issues/3593:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:20|Issue https://github.com/kubeflow/kubeflow/issues/3597:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:20|Issue https://github.com/kubeflow/kubeflow/issues/3602:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:20|Issue https://github.com/kubeflow/kubeflow/issues/3603:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:20|Issue https://github.com/kubeflow/kubeflow/issues/3604:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:20|Issue https://github.com/kubeflow/kubeflow/issues/3605:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:20|Issue https://github.com/kubeflow/kubeflow/issues/3606:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:20|Issue: https://github.com/kubeflow/kubeflow/issues/3610; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:21|Issue https://github.com/kubeflow/kubeflow/issues/3610:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:21|Issue https://github.com/kubeflow/kubeflow/issues/3611:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:21|Issue https://github.com/kubeflow/kubeflow/issues/3612:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:21|Issue https://github.com/kubeflow/kubeflow/issues/3613:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:21|Issue: https://github.com/kubeflow/kubeflow/issues/3614; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:23|Issue https://github.com/kubeflow/kubeflow/issues/3614:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:23|Issue https://github.com/kubeflow/kubeflow/issues/3615:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:23|Issue https://github.com/kubeflow/kubeflow/issues/3616:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:23|Issue https://github.com/kubeflow/kubeflow/issues/3617:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:23|Issue: https://github.com/kubeflow/kubeflow/issues/3618; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:24|Issue https://github.com/kubeflow/kubeflow/issues/3618:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:24|Issue https://github.com/kubeflow/kubeflow/issues/3619:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:24|Issue https://github.com/kubeflow/kubeflow/issues/3620:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:24|Issue: https://github.com/kubeflow/kubeflow/issues/3623; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:25|Issue https://github.com/kubeflow/kubeflow/issues/3623:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:25|Issue https://github.com/kubeflow/kubeflow/issues/3624:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:25|Issue https://github.com/kubeflow/kubeflow/issues/3625:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:32|Processing shard 4|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:41:32|Issue https://github.com/kubeflow/kubeflow/issues/3626:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:32|Issue https://github.com/kubeflow/kubeflow/issues/3628:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:32|Issue https://github.com/kubeflow/kubeflow/issues/3629:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:32|Issue https://github.com/kubeflow/kubeflow/issues/3633:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:32|Issue https://github.com/kubeflow/kubeflow/issues/3635:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:32|Issue https://github.com/kubeflow/kubeflow/issues/3636:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:32|Issue: https://github.com/kubeflow/kubeflow/issues/3637; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:33|Issue https://github.com/kubeflow/kubeflow/issues/3637:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:33|Issue: https://github.com/kubeflow/kubeflow/issues/3638; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:34|Issue https://github.com/kubeflow/kubeflow/issues/3638:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:34|Issue: https://github.com/kubeflow/kubeflow/issues/3639; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:36|Issue https://github.com/kubeflow/kubeflow/issues/3639:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:36|Issue https://github.com/kubeflow/kubeflow/issues/3640:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:36|Issue https://github.com/kubeflow/kubeflow/issues/3642:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:36|Issue: https://github.com/kubeflow/kubeflow/issues/3643; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:37|Issue https://github.com/kubeflow/kubeflow/issues/3643:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:37|Issue https://github.com/kubeflow/kubeflow/issues/3646:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:37|Issue https://github.com/kubeflow/kubeflow/issues/3649:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:37|Issue https://github.com/kubeflow/kubeflow/issues/3650:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:37|Issue https://github.com/kubeflow/kubeflow/issues/3654:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:37|Issue: https://github.com/kubeflow/kubeflow/issues/3655; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:38|Issue https://github.com/kubeflow/kubeflow/issues/3655:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:38|Issue https://github.com/kubeflow/kubeflow/issues/3656:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:38|Issue https://github.com/kubeflow/kubeflow/issues/3657:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:38|Issue: https://github.com/kubeflow/kubeflow/issues/3658; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:39|Issue https://github.com/kubeflow/kubeflow/issues/3658:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:39|Issue: https://github.com/kubeflow/kubeflow/issues/3659; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:40|Issue https://github.com/kubeflow/kubeflow/issues/3659:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:40|Issue https://github.com/kubeflow/kubeflow/issues/3660:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:40|Issue https://github.com/kubeflow/kubeflow/issues/3667:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:40|Issue https://github.com/kubeflow/kubeflow/issues/3670:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:40|Issue https://github.com/kubeflow/kubeflow/issues/3671:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:40|Issue https://github.com/kubeflow/kubeflow/issues/3672:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:40|Issue https://github.com/kubeflow/kubeflow/issues/3674:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:40|Issue https://github.com/kubeflow/kubeflow/issues/3677:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:40|Issue https://github.com/kubeflow/kubeflow/issues/3679:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:40|Issue https://github.com/kubeflow/kubeflow/issues/3681:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:40|Issue https://github.com/kubeflow/kubeflow/issues/3683:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:40|Issue https://github.com/kubeflow/kubeflow/issues/3684:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:40|Issue https://github.com/kubeflow/kubeflow/issues/3685:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:40|Issue: https://github.com/kubeflow/kubeflow/issues/3686; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:41|Issue https://github.com/kubeflow/kubeflow/issues/3686:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:41|Issue https://github.com/kubeflow/kubeflow/issues/3687:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:41|Issue https://github.com/kubeflow/kubeflow/issues/3688:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:41|Issue https://github.com/kubeflow/kubeflow/issues/3689:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:41|Issue: https://github.com/kubeflow/kubeflow/issues/3694; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:43|Issue https://github.com/kubeflow/kubeflow/issues/3694:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:43|Issue: https://github.com/kubeflow/kubeflow/issues/3698; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:44|Issue https://github.com/kubeflow/kubeflow/issues/3698:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:44|Issue https://github.com/kubeflow/kubeflow/issues/3699:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:44|Issue https://github.com/kubeflow/kubeflow/issues/3701:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:44|Issue https://github.com/kubeflow/kubeflow/issues/3702:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:44|Issue: https://github.com/kubeflow/kubeflow/issues/3703; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:46|Issue https://github.com/kubeflow/kubeflow/issues/3703:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:46|Issue https://github.com/kubeflow/kubeflow/issues/3705:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:46|Issue https://github.com/kubeflow/kubeflow/issues/3706:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:46|Issue https://github.com/kubeflow/kubeflow/issues/3707:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:46|Issue https://github.com/kubeflow/kubeflow/issues/3708:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:46|Issue: https://github.com/kubeflow/kubeflow/issues/3709; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:48|Issue https://github.com/kubeflow/kubeflow/issues/3709:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:48|Issue https://github.com/kubeflow/kubeflow/issues/3710:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:48|Issue https://github.com/kubeflow/kubeflow/issues/3711:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:48|Issue https://github.com/kubeflow/kubeflow/issues/3712:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:48|Issue https://github.com/kubeflow/kubeflow/issues/3713:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:48|Issue https://github.com/kubeflow/kubeflow/issues/3715:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:48|Issue https://github.com/kubeflow/kubeflow/issues/3716:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:48|Issue https://github.com/kubeflow/kubeflow/issues/3719:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:48|Issue https://github.com/kubeflow/kubeflow/issues/3720:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:48|Issue: https://github.com/kubeflow/kubeflow/issues/3721; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:50|Issue https://github.com/kubeflow/kubeflow/issues/3721:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:50|Issue https://github.com/kubeflow/kubeflow/issues/3722:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:50|Issue https://github.com/kubeflow/kubeflow/issues/3723:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:50|Issue https://github.com/kubeflow/kubeflow/issues/3724:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:50|Issue: https://github.com/kubeflow/kubeflow/issues/3725; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:52|Issue https://github.com/kubeflow/kubeflow/issues/3725:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:52|Issue https://github.com/kubeflow/kubeflow/issues/3726:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:52|Issue: https://github.com/kubeflow/kubeflow/issues/3727; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:53|Issue https://github.com/kubeflow/kubeflow/issues/3727:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:53|Issue https://github.com/kubeflow/kubeflow/issues/3728:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:53|Issue https://github.com/kubeflow/kubeflow/issues/3733:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:53|Issue https://github.com/kubeflow/kubeflow/issues/3735:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:53|Issue: https://github.com/kubeflow/kubeflow/issues/3736; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:54|Issue https://github.com/kubeflow/kubeflow/issues/3736:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:54|Issue: https://github.com/kubeflow/kubeflow/issues/3737; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:56|Issue https://github.com/kubeflow/kubeflow/issues/3737:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:56|Issue https://github.com/kubeflow/kubeflow/issues/3738:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:56|Issue: https://github.com/kubeflow/kubeflow/issues/3739; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:57|Issue https://github.com/kubeflow/kubeflow/issues/3739:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:57|Issue: https://github.com/kubeflow/kubeflow/issues/3744; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:58|Issue https://github.com/kubeflow/kubeflow/issues/3744:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:58|Issue https://github.com/kubeflow/kubeflow/issues/3746:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:58|Issue https://github.com/kubeflow/kubeflow/issues/3747:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:58|Issue: https://github.com/kubeflow/kubeflow/issues/3749; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:41:59|Issue https://github.com/kubeflow/kubeflow/issues/3749:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:41:59|Issue: https://github.com/kubeflow/kubeflow/issues/3750; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:00|Issue https://github.com/kubeflow/kubeflow/issues/3750:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:00|Issue https://github.com/kubeflow/kubeflow/issues/3752:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:00|Issue https://github.com/kubeflow/kubeflow/issues/3753:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:00|Issue https://github.com/kubeflow/kubeflow/issues/3755:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:00|Issue https://github.com/kubeflow/kubeflow/issues/3756:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:00|Issue https://github.com/kubeflow/kubeflow/issues/3757:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:00|Issue: https://github.com/kubeflow/kubeflow/issues/3759; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:02|Issue https://github.com/kubeflow/kubeflow/issues/3759:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:02|Issue https://github.com/kubeflow/kubeflow/issues/3761:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:02|Issue: https://github.com/kubeflow/kubeflow/issues/3762; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:03|Issue https://github.com/kubeflow/kubeflow/issues/3762:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:03|Issue: https://github.com/kubeflow/kubeflow/issues/3764; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:04|Issue https://github.com/kubeflow/kubeflow/issues/3764:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:04|Issue https://github.com/kubeflow/kubeflow/issues/3765:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:04|Issue: https://github.com/kubeflow/kubeflow/issues/3767; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:06|Issue https://github.com/kubeflow/kubeflow/issues/3767:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:06|Issue https://github.com/kubeflow/kubeflow/issues/3768:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:06|Issue: https://github.com/kubeflow/kubeflow/issues/3770; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:07|Issue https://github.com/kubeflow/kubeflow/issues/3770:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:07|Issue https://github.com/kubeflow/kubeflow/issues/3771:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:07|Issue: https://github.com/kubeflow/kubeflow/issues/3772; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:10|Issue https://github.com/kubeflow/kubeflow/issues/3772:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:10|Issue https://github.com/kubeflow/kubeflow/issues/3773:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:10|Issue: https://github.com/kubeflow/kubeflow/issues/3774; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:11|Issue https://github.com/kubeflow/kubeflow/issues/3774:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:11|Issue https://github.com/kubeflow/kubeflow/issues/3776:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:11|Issue https://github.com/kubeflow/kubeflow/issues/3778:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:11|Issue https://github.com/kubeflow/kubeflow/issues/3780:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:11|Issue: https://github.com/kubeflow/kubeflow/issues/3781; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:12|Issue https://github.com/kubeflow/kubeflow/issues/3781:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:12|Issue https://github.com/kubeflow/kubeflow/issues/3784:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:12|Issue https://github.com/kubeflow/kubeflow/issues/3785:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:12|Issue https://github.com/kubeflow/kubeflow/issues/3787:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:12|Issue https://github.com/kubeflow/kubeflow/issues/3788:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:20|Processing shard 5|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:42:20|Issue https://github.com/kubeflow/kubeflow/issues/3789:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:20|Issue https://github.com/kubeflow/kubeflow/issues/3790:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:20|Issue https://github.com/kubeflow/kubeflow/issues/3791:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:20|Issue https://github.com/kubeflow/kubeflow/issues/3793:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:20|Issue https://github.com/kubeflow/kubeflow/issues/3794:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:20|Issue https://github.com/kubeflow/kubeflow/issues/3795:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:20|Issue https://github.com/kubeflow/kubeflow/issues/3796:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:20|Issue https://github.com/kubeflow/kubeflow/issues/3797:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:20|Issue https://github.com/kubeflow/kubeflow/issues/3798:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:20|Issue https://github.com/kubeflow/kubeflow/issues/3799:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:20|Issue https://github.com/kubeflow/kubeflow/issues/3803:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:20|Issue https://github.com/kubeflow/kubeflow/issues/3804:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:20|Issue https://github.com/kubeflow/kubeflow/issues/3805:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:20|Issue https://github.com/kubeflow/kubeflow/issues/3806:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:20|Issue https://github.com/kubeflow/kubeflow/issues/3807:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:20|Issue: https://github.com/kubeflow/kubeflow/issues/3808; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:21|Issue https://github.com/kubeflow/kubeflow/issues/3808:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:21|Issue: https://github.com/kubeflow/kubeflow/issues/3810; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:25|Issue https://github.com/kubeflow/kubeflow/issues/3810:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:25|Issue: https://github.com/kubeflow/kubeflow/issues/3812; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:26|Issue https://github.com/kubeflow/kubeflow/issues/3812:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:26|Issue https://github.com/kubeflow/kubeflow/issues/3813:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:26|Issue https://github.com/kubeflow/kubeflow/issues/3815:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:26|Issue https://github.com/kubeflow/kubeflow/issues/3816:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:26|Issue https://github.com/kubeflow/kubeflow/issues/3817:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:26|Issue https://github.com/kubeflow/kubeflow/issues/3818:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:26|Issue https://github.com/kubeflow/kubeflow/issues/3819:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:26|Issue https://github.com/kubeflow/kubeflow/issues/3820:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:26|Issue: https://github.com/kubeflow/kubeflow/issues/3821; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:27|Issue https://github.com/kubeflow/kubeflow/issues/3821:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:27|Issue: https://github.com/kubeflow/kubeflow/issues/3822; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:28|Issue https://github.com/kubeflow/kubeflow/issues/3822:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:28|Issue: https://github.com/kubeflow/kubeflow/issues/3823; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:29|Issue https://github.com/kubeflow/kubeflow/issues/3823:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:29|Issue https://github.com/kubeflow/kubeflow/issues/3826:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:29|Issue https://github.com/kubeflow/kubeflow/issues/3827:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:29|Issue https://github.com/kubeflow/kubeflow/issues/3828:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:29|Issue https://github.com/kubeflow/kubeflow/issues/3829:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:29|Issue: https://github.com/kubeflow/kubeflow/issues/3831; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:30|Issue https://github.com/kubeflow/kubeflow/issues/3831:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:30|Issue https://github.com/kubeflow/kubeflow/issues/3832:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:30|Issue: https://github.com/kubeflow/kubeflow/issues/3833; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:31|Issue https://github.com/kubeflow/kubeflow/issues/3833:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:31|Issue https://github.com/kubeflow/kubeflow/issues/3834:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:31|Issue https://github.com/kubeflow/kubeflow/issues/3835:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:31|Issue https://github.com/kubeflow/kubeflow/issues/3836:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:31|Issue https://github.com/kubeflow/kubeflow/issues/3838:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:31|Issue https://github.com/kubeflow/kubeflow/issues/3839:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:31|Issue https://github.com/kubeflow/kubeflow/issues/3840:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:31|Issue https://github.com/kubeflow/kubeflow/issues/3844:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:31|Issue: https://github.com/kubeflow/kubeflow/issues/3846; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:33|Issue https://github.com/kubeflow/kubeflow/issues/3846:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:33|Issue https://github.com/kubeflow/kubeflow/issues/3847:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:33|Issue https://github.com/kubeflow/kubeflow/issues/3848:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:33|Issue: https://github.com/kubeflow/kubeflow/issues/3850; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:34|Issue https://github.com/kubeflow/kubeflow/issues/3850:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:34|Issue: https://github.com/kubeflow/kubeflow/issues/3851; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:35|Issue https://github.com/kubeflow/kubeflow/issues/3851:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:35|Issue https://github.com/kubeflow/kubeflow/issues/3852:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:35|Issue https://github.com/kubeflow/kubeflow/issues/3854:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:35|Issue https://github.com/kubeflow/kubeflow/issues/3855:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:35|Issue https://github.com/kubeflow/kubeflow/issues/3858:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:35|Issue: https://github.com/kubeflow/kubeflow/issues/3859; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:38|Issue https://github.com/kubeflow/kubeflow/issues/3859:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:38|Issue: https://github.com/kubeflow/kubeflow/issues/3860; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:41|Issue https://github.com/kubeflow/kubeflow/issues/3860:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:41|Issue https://github.com/kubeflow/kubeflow/issues/3861:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:41|Issue https://github.com/kubeflow/kubeflow/issues/3862:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:41|Issue https://github.com/kubeflow/kubeflow/issues/3863:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:41|Issue: https://github.com/kubeflow/kubeflow/issues/3866; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:43|Issue https://github.com/kubeflow/kubeflow/issues/3866:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:43|Issue https://github.com/kubeflow/kubeflow/issues/3868:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:43|Issue https://github.com/kubeflow/kubeflow/issues/3869:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:43|Issue: https://github.com/kubeflow/kubeflow/issues/3870; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:44|Issue https://github.com/kubeflow/kubeflow/issues/3870:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:44|Issue https://github.com/kubeflow/kubeflow/issues/3872:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:44|Issue https://github.com/kubeflow/kubeflow/issues/3873:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:44|Issue https://github.com/kubeflow/kubeflow/issues/3874:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:44|Issue: https://github.com/kubeflow/kubeflow/issues/3875; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:45|Issue https://github.com/kubeflow/kubeflow/issues/3875:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:45|Issue https://github.com/kubeflow/kubeflow/issues/3876:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:45|Issue https://github.com/kubeflow/kubeflow/issues/3878:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:45|Issue https://github.com/kubeflow/kubeflow/issues/3883:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:45|Issue https://github.com/kubeflow/kubeflow/issues/3886:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:45|Issue https://github.com/kubeflow/kubeflow/issues/3888:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:45|Issue https://github.com/kubeflow/kubeflow/issues/3890:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:45|Issue https://github.com/kubeflow/kubeflow/issues/3891:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:45|Issue: https://github.com/kubeflow/kubeflow/issues/3893; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:46|Issue https://github.com/kubeflow/kubeflow/issues/3893:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:46|Issue https://github.com/kubeflow/kubeflow/issues/3897:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:46|Issue: https://github.com/kubeflow/kubeflow/issues/3900; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:49|Issue https://github.com/kubeflow/kubeflow/issues/3900:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:49|Issue https://github.com/kubeflow/kubeflow/issues/3901:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:49|Issue https://github.com/kubeflow/kubeflow/issues/3902:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:49|Issue https://github.com/kubeflow/kubeflow/issues/3903:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:49|Issue: https://github.com/kubeflow/kubeflow/issues/3905; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:51|Issue https://github.com/kubeflow/kubeflow/issues/3905:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:51|Issue https://github.com/kubeflow/kubeflow/issues/3907:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:51|Issue https://github.com/kubeflow/kubeflow/issues/3908:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:51|Issue https://github.com/kubeflow/kubeflow/issues/3909:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:51|Issue https://github.com/kubeflow/kubeflow/issues/3911:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:51|Issue https://github.com/kubeflow/kubeflow/issues/3913:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:51|Issue https://github.com/kubeflow/kubeflow/issues/3915:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:51|Issue https://github.com/kubeflow/kubeflow/issues/3916:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:51|Issue: https://github.com/kubeflow/kubeflow/issues/3917; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:52|Issue https://github.com/kubeflow/kubeflow/issues/3917:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:52|Issue https://github.com/kubeflow/kubeflow/issues/3918:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:52|Issue: https://github.com/kubeflow/kubeflow/issues/3920; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:53|Issue https://github.com/kubeflow/kubeflow/issues/3920:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:53|Issue https://github.com/kubeflow/kubeflow/issues/3921:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:53|Issue https://github.com/kubeflow/kubeflow/issues/3923:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:53|Issue: https://github.com/kubeflow/kubeflow/issues/3924; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:54|Issue https://github.com/kubeflow/kubeflow/issues/3924:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:54|Issue https://github.com/kubeflow/kubeflow/issues/3927:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:54|Issue: https://github.com/kubeflow/kubeflow/issues/3930; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:55|Issue https://github.com/kubeflow/kubeflow/issues/3930:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:55|Issue https://github.com/kubeflow/kubeflow/issues/3931:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:55|Issue https://github.com/kubeflow/kubeflow/issues/3932:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:55|Issue: https://github.com/kubeflow/kubeflow/issues/3935; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:57|Issue https://github.com/kubeflow/kubeflow/issues/3935:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:57|Issue https://github.com/kubeflow/kubeflow/issues/3936:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:57|Issue https://github.com/kubeflow/kubeflow/issues/3937:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:57|Issue: https://github.com/kubeflow/kubeflow/issues/3938; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:42:59|Issue https://github.com/kubeflow/kubeflow/issues/3938:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:42:59|Issue https://github.com/kubeflow/kubeflow/issues/3939:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:06|Processing shard 6|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:43:06|Issue: https://github.com/kubeflow/kubeflow/issues/3940; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:07|Issue https://github.com/kubeflow/kubeflow/issues/3940:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:07|Issue https://github.com/kubeflow/kubeflow/issues/3944:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:07|Issue https://github.com/kubeflow/kubeflow/issues/3945:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:07|Issue https://github.com/kubeflow/kubeflow/issues/3948:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:07|Issue https://github.com/kubeflow/kubeflow/issues/3950:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:07|Issue https://github.com/kubeflow/kubeflow/issues/3951:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:07|Issue https://github.com/kubeflow/kubeflow/issues/3954:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:07|Issue https://github.com/kubeflow/kubeflow/issues/3956:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:07|Issue https://github.com/kubeflow/kubeflow/issues/3962:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:07|Issue https://github.com/kubeflow/kubeflow/issues/3963:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:07|Issue https://github.com/kubeflow/kubeflow/issues/3964:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:07|Issue https://github.com/kubeflow/kubeflow/issues/3965:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:07|Issue https://github.com/kubeflow/kubeflow/issues/3967:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:07|Issue https://github.com/kubeflow/kubeflow/issues/3970:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:07|Issue https://github.com/kubeflow/kubeflow/issues/3972:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:07|Issue https://github.com/kubeflow/kubeflow/issues/3974:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:07|Issue https://github.com/kubeflow/kubeflow/issues/3975:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:07|Issue https://github.com/kubeflow/kubeflow/issues/3976:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:07|Issue https://github.com/kubeflow/kubeflow/issues/3977:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:07|Issue https://github.com/kubeflow/kubeflow/issues/3983:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:07|Issue https://github.com/kubeflow/kubeflow/issues/3985:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:07|Issue https://github.com/kubeflow/kubeflow/issues/3986:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:07|Issue https://github.com/kubeflow/kubeflow/issues/3988:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:07|Issue: https://github.com/kubeflow/kubeflow/issues/3989; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:09|Issue https://github.com/kubeflow/kubeflow/issues/3989:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:09|Issue https://github.com/kubeflow/kubeflow/issues/3995:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:09|Issue https://github.com/kubeflow/kubeflow/issues/3997:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:09|Issue https://github.com/kubeflow/kubeflow/issues/3999:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:09|Issue https://github.com/kubeflow/kubeflow/issues/4000:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:09|Issue https://github.com/kubeflow/kubeflow/issues/4001:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:09|Issue: https://github.com/kubeflow/kubeflow/issues/4002; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:10|Issue https://github.com/kubeflow/kubeflow/issues/4002:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:10|Issue https://github.com/kubeflow/kubeflow/issues/4003:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:10|Issue https://github.com/kubeflow/kubeflow/issues/4005:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:10|Issue https://github.com/kubeflow/kubeflow/issues/4010:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:10|Issue https://github.com/kubeflow/kubeflow/issues/4011:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:10|Issue https://github.com/kubeflow/kubeflow/issues/4012:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:10|Issue: https://github.com/kubeflow/kubeflow/issues/4015; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:11|Issue https://github.com/kubeflow/kubeflow/issues/4015:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:11|Issue https://github.com/kubeflow/kubeflow/issues/4016:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:11|Issue https://github.com/kubeflow/kubeflow/issues/4019:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:11|Issue https://github.com/kubeflow/kubeflow/issues/4020:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:11|Issue https://github.com/kubeflow/kubeflow/issues/4021:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:11|Issue https://github.com/kubeflow/kubeflow/issues/4022:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:11|Issue https://github.com/kubeflow/kubeflow/issues/4023:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:11|Issue https://github.com/kubeflow/kubeflow/issues/4024:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:11|Issue: https://github.com/kubeflow/kubeflow/issues/4025; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:12|Issue https://github.com/kubeflow/kubeflow/issues/4025:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:12|Issue https://github.com/kubeflow/kubeflow/issues/4026:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:12|Issue https://github.com/kubeflow/kubeflow/issues/4028:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:12|Issue https://github.com/kubeflow/kubeflow/issues/4030:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:12|Issue https://github.com/kubeflow/kubeflow/issues/4032:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:12|Issue https://github.com/kubeflow/kubeflow/issues/4034:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:12|Issue https://github.com/kubeflow/kubeflow/issues/4035:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:12|Issue https://github.com/kubeflow/kubeflow/issues/4036:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:12|Issue https://github.com/kubeflow/kubeflow/issues/4037:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:12|Issue https://github.com/kubeflow/kubeflow/issues/4039:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:12|Issue https://github.com/kubeflow/kubeflow/issues/4041:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:12|Issue https://github.com/kubeflow/kubeflow/issues/4042:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:12|Issue: https://github.com/kubeflow/kubeflow/issues/4043; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:14|Issue https://github.com/kubeflow/kubeflow/issues/4043:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:14|Issue https://github.com/kubeflow/kubeflow/issues/4044:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:14|Issue https://github.com/kubeflow/kubeflow/issues/4045:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:14|Issue https://github.com/kubeflow/kubeflow/issues/4047:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:14|Issue https://github.com/kubeflow/kubeflow/issues/4049:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:14|Issue https://github.com/kubeflow/kubeflow/issues/4051:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:14|Issue: https://github.com/kubeflow/kubeflow/issues/4056; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:15|Issue https://github.com/kubeflow/kubeflow/issues/4056:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:15|Issue https://github.com/kubeflow/kubeflow/issues/4057:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:15|Issue https://github.com/kubeflow/kubeflow/issues/4058:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:15|Issue https://github.com/kubeflow/kubeflow/issues/4059:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:15|Issue https://github.com/kubeflow/kubeflow/issues/4060:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:15|Issue https://github.com/kubeflow/kubeflow/issues/4061:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:15|Issue https://github.com/kubeflow/kubeflow/issues/4062:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:15|Issue https://github.com/kubeflow/kubeflow/issues/4063:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:15|Issue https://github.com/kubeflow/kubeflow/issues/4064:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:15|Issue https://github.com/kubeflow/kubeflow/issues/4065:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:15|Issue https://github.com/kubeflow/kubeflow/issues/4066:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:15|Issue https://github.com/kubeflow/kubeflow/issues/4067:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:15|Issue https://github.com/kubeflow/kubeflow/issues/4068:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:15|Issue https://github.com/kubeflow/kubeflow/issues/4069:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:15|Issue https://github.com/kubeflow/kubeflow/issues/4070:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:15|Issue https://github.com/kubeflow/kubeflow/issues/4071:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:15|Issue https://github.com/kubeflow/kubeflow/issues/4072:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:15|Issue https://github.com/kubeflow/kubeflow/issues/4073:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:15|Issue https://github.com/kubeflow/kubeflow/issues/4074:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:15|Issue https://github.com/kubeflow/kubeflow/issues/4075:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:15|Issue https://github.com/kubeflow/kubeflow/issues/4076:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:15|Issue: https://github.com/kubeflow/kubeflow/issues/4077; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:16|Issue https://github.com/kubeflow/kubeflow/issues/4077:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:16|Issue https://github.com/kubeflow/kubeflow/issues/4078:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:16|Issue https://github.com/kubeflow/kubeflow/issues/4078 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:43:16|Issue https://github.com/kubeflow/kubeflow/issues/4079:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:16|Issue https://github.com/kubeflow/kubeflow/issues/4080:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:16|Issue: https://github.com/kubeflow/kubeflow/issues/4081; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:18|Issue https://github.com/kubeflow/kubeflow/issues/4081:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:18|Issue: https://github.com/kubeflow/kubeflow/issues/4085; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:19|Issue https://github.com/kubeflow/kubeflow/issues/4085:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:19|Issue: https://github.com/kubeflow/kubeflow/issues/4086; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:20|Issue https://github.com/kubeflow/kubeflow/issues/4086:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:20|Issue https://github.com/kubeflow/kubeflow/issues/4087:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:20|Issue https://github.com/kubeflow/kubeflow/issues/4088:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:20|Issue: https://github.com/kubeflow/kubeflow/issues/4090; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:23|Issue https://github.com/kubeflow/kubeflow/issues/4090:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:23|Issue https://github.com/kubeflow/kubeflow/issues/4093:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:23|Issue https://github.com/kubeflow/kubeflow/issues/4094:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:23|Issue https://github.com/kubeflow/kubeflow/issues/4095:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:23|Issue https://github.com/kubeflow/kubeflow/issues/4099:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:23|Issue https://github.com/kubeflow/kubeflow/issues/4100:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:23|Issue https://github.com/kubeflow/kubeflow/issues/4101:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:23|Issue https://github.com/kubeflow/kubeflow/issues/4103:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:23|Issue https://github.com/kubeflow/kubeflow/issues/4104:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:29|Processing shard 7|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:43:29|Issue https://github.com/kubeflow/kubeflow/issues/4107:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:29|Issue https://github.com/kubeflow/kubeflow/issues/4108:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:29|Issue https://github.com/kubeflow/kubeflow/issues/4109:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:29|Issue https://github.com/kubeflow/kubeflow/issues/4111:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:29|Issue https://github.com/kubeflow/kubeflow/issues/4113:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:29|Issue https://github.com/kubeflow/kubeflow/issues/4114:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:29|Issue https://github.com/kubeflow/kubeflow/issues/4116:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:29|Issue: https://github.com/kubeflow/kubeflow/issues/4117; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:31|Issue https://github.com/kubeflow/kubeflow/issues/4117:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:31|Issue https://github.com/kubeflow/kubeflow/issues/4119:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:31|Issue: https://github.com/kubeflow/kubeflow/issues/4124; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:32|Issue https://github.com/kubeflow/kubeflow/issues/4124:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:32|Issue https://github.com/kubeflow/kubeflow/issues/4125:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:32|Issue https://github.com/kubeflow/kubeflow/issues/4126:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:32|Issue https://github.com/kubeflow/kubeflow/issues/4131:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:32|Issue: https://github.com/kubeflow/kubeflow/issues/4133; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4133:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4135:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4136:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4138:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4140:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4142:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4144:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4145:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4146:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4147:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4150:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4152:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4153:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4156:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4157:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4157 remove from triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4158:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4159:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4160:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4162:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4163:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4164:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4172:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4173:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4175:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4180:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue https://github.com/kubeflow/kubeflow/issues/4183:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:34|Issue: https://github.com/kubeflow/kubeflow/issues/4184; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:37|Issue https://github.com/kubeflow/kubeflow/issues/4184:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:37|Issue https://github.com/kubeflow/kubeflow/issues/4185:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:37|Issue https://github.com/kubeflow/kubeflow/issues/4186:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:37|Issue https://github.com/kubeflow/kubeflow/issues/4188:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:37|Issue https://github.com/kubeflow/kubeflow/issues/4189:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:37|Issue https://github.com/kubeflow/kubeflow/issues/4190:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:37|Issue https://github.com/kubeflow/kubeflow/issues/4192:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:37|Issue https://github.com/kubeflow/kubeflow/issues/4195:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:37|Issue https://github.com/kubeflow/kubeflow/issues/4196:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:37|Issue https://github.com/kubeflow/kubeflow/issues/4198:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:37|Issue: https://github.com/kubeflow/kubeflow/issues/4199; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:39|Issue https://github.com/kubeflow/kubeflow/issues/4199:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:39|Issue https://github.com/kubeflow/kubeflow/issues/4200:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:39|Issue https://github.com/kubeflow/kubeflow/issues/4202:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:39|Issue https://github.com/kubeflow/kubeflow/issues/4203:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:39|Issue https://github.com/kubeflow/kubeflow/issues/4205:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:39|Issue https://github.com/kubeflow/kubeflow/issues/4208:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:39|Issue https://github.com/kubeflow/kubeflow/issues/4209:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:39|Issue https://github.com/kubeflow/kubeflow/issues/4212:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:39|Issue https://github.com/kubeflow/kubeflow/issues/4215:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:39|Issue https://github.com/kubeflow/kubeflow/issues/4217:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:39|Issue: https://github.com/kubeflow/kubeflow/issues/4221; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:40|Issue https://github.com/kubeflow/kubeflow/issues/4221:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:40|Issue https://github.com/kubeflow/kubeflow/issues/4226:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:40|Issue https://github.com/kubeflow/kubeflow/issues/4227:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:40|Issue: https://github.com/kubeflow/kubeflow/issues/4228; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:41|Issue https://github.com/kubeflow/kubeflow/issues/4228:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:41|Issue: https://github.com/kubeflow/kubeflow/issues/4229; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:42|Issue https://github.com/kubeflow/kubeflow/issues/4229:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:42|Issue https://github.com/kubeflow/kubeflow/issues/4231:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:42|Issue https://github.com/kubeflow/kubeflow/issues/4233:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:42|Issue: https://github.com/kubeflow/kubeflow/issues/4239; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:43|Issue https://github.com/kubeflow/kubeflow/issues/4239:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:43|Issue: https://github.com/kubeflow/kubeflow/issues/4240; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:45|Issue https://github.com/kubeflow/kubeflow/issues/4240:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:45|Issue https://github.com/kubeflow/kubeflow/issues/4241:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:45|Issue https://github.com/kubeflow/kubeflow/issues/4242:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:45|Issue https://github.com/kubeflow/kubeflow/issues/4247:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:45|Issue: https://github.com/kubeflow/kubeflow/issues/4249; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:46|Issue https://github.com/kubeflow/kubeflow/issues/4249:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:46|Issue https://github.com/kubeflow/kubeflow/issues/4254:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:46|Issue: https://github.com/kubeflow/kubeflow/issues/4259; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:47|Issue https://github.com/kubeflow/kubeflow/issues/4259:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:47|Issue: https://github.com/kubeflow/kubeflow/issues/4266; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:49|Issue https://github.com/kubeflow/kubeflow/issues/4266:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:49|Issue https://github.com/kubeflow/kubeflow/issues/4267:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:49|Issue https://github.com/kubeflow/kubeflow/issues/4269:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:49|Issue https://github.com/kubeflow/kubeflow/issues/4270:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:49|Issue https://github.com/kubeflow/kubeflow/issues/4273:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:49|Issue https://github.com/kubeflow/kubeflow/issues/4273 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:43:49|Issue https://github.com/kubeflow/kubeflow/issues/4274:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:49|Issue https://github.com/kubeflow/kubeflow/issues/4274 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:43:49|Issue https://github.com/kubeflow/kubeflow/issues/4276:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:49|Issue https://github.com/kubeflow/kubeflow/issues/4277:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:49|Issue https://github.com/kubeflow/kubeflow/issues/4278:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:49|Issue https://github.com/kubeflow/kubeflow/issues/4278 remove from triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2019-11-26T15:43:49|Issue: https://github.com/kubeflow/kubeflow/issues/4281; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:51|Issue https://github.com/kubeflow/kubeflow/issues/4281:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:51|Issue https://github.com/kubeflow/kubeflow/issues/4284:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:51|Issue https://github.com/kubeflow/kubeflow/issues/4285:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:51|Issue https://github.com/kubeflow/kubeflow/issues/4285 remove from triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2019-11-26T15:43:52|Issue https://github.com/kubeflow/kubeflow/issues/4288:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:52|Issue https://github.com/kubeflow/kubeflow/issues/4290:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:52|Issue https://github.com/kubeflow/kubeflow/issues/4291:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:52|Issue https://github.com/kubeflow/kubeflow/issues/4291 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:43:52|Issue https://github.com/kubeflow/kubeflow/issues/4292:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:52|Issue https://github.com/kubeflow/kubeflow/issues/4293:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:52|Issue https://github.com/kubeflow/kubeflow/issues/4294:
state:Issue needs triage:
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:52|Issue https://github.com/kubeflow/kubeflow/issues/4294 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:43:52|Issue https://github.com/kubeflow/kubeflow/issues/4300:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:52|Issue https://github.com/kubeflow/kubeflow/issues/4300 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:43:52|Issue https://github.com/kubeflow/kubeflow/issues/4301:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:52|Issue https://github.com/kubeflow/kubeflow/issues/4301 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:43:52|Issue https://github.com/kubeflow/kubeflow/issues/4302:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:52|Issue https://github.com/kubeflow/kubeflow/issues/4306:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:52|Issue https://github.com/kubeflow/kubeflow/issues/4306 remove from triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2019-11-26T15:43:53|Issue https://github.com/kubeflow/kubeflow/issues/4310:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:53|Issue https://github.com/kubeflow/kubeflow/issues/4310 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:43:53|Issue: https://github.com/kubeflow/kubeflow/issues/4314; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:54|Issue https://github.com/kubeflow/kubeflow/issues/4314:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:54|Issue https://github.com/kubeflow/kubeflow/issues/4314 remove from triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2019-11-26T15:43:55|Issue: https://github.com/kubeflow/kubeflow/issues/4315; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:43:56|Issue https://github.com/kubeflow/kubeflow/issues/4315:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:56|Issue https://github.com/kubeflow/kubeflow/issues/4315 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:43:56|Issue https://github.com/kubeflow/kubeflow/issues/4316:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:43:56|Issue https://github.com/kubeflow/kubeflow/issues/4316 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:44:01|Processing shard 8|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:44:01|Issue https://github.com/kubeflow/kubeflow/issues/4322:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:01|Issue https://github.com/kubeflow/kubeflow/issues/4324:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:01|Issue https://github.com/kubeflow/kubeflow/issues/4324 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:44:01|Issue https://github.com/kubeflow/kubeflow/issues/4325:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:01|Issue https://github.com/kubeflow/kubeflow/issues/4325 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:44:01|Issue: https://github.com/kubeflow/kubeflow/issues/4327; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:44:03|Issue https://github.com/kubeflow/kubeflow/issues/4327:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:03|Issue https://github.com/kubeflow/kubeflow/issues/4330:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:03|Issue https://github.com/kubeflow/kubeflow/issues/4334:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:03|Issue https://github.com/kubeflow/kubeflow/issues/4339:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:03|Issue: https://github.com/kubeflow/kubeflow/issues/4342; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:44:04|Issue https://github.com/kubeflow/kubeflow/issues/4342:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:04|Issue https://github.com/kubeflow/kubeflow/issues/4343:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:04|Issue https://github.com/kubeflow/kubeflow/issues/4343 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:44:04|Issue https://github.com/kubeflow/kubeflow/issues/4345:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:04|Issue https://github.com/kubeflow/kubeflow/issues/4348:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:04|Issue https://github.com/kubeflow/kubeflow/issues/4353:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:04|Issue: https://github.com/kubeflow/kubeflow/issues/4354; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:44:05|Issue https://github.com/kubeflow/kubeflow/issues/4354:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:05|Issue https://github.com/kubeflow/kubeflow/issues/4355:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:05|Issue https://github.com/kubeflow/kubeflow/issues/4357:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:05|Issue https://github.com/kubeflow/kubeflow/issues/4358:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:05|Issue https://github.com/kubeflow/kubeflow/issues/4358 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:44:05|Issue https://github.com/kubeflow/kubeflow/issues/4363:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:05|Issue https://github.com/kubeflow/kubeflow/issues/4363 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:44:05|Issue https://github.com/kubeflow/kubeflow/issues/4366:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:05|Issue https://github.com/kubeflow/kubeflow/issues/4366 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:44:05|Issue: https://github.com/kubeflow/kubeflow/issues/4368; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:44:06|Issue https://github.com/kubeflow/kubeflow/issues/4368:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:06|Issue https://github.com/kubeflow/kubeflow/issues/4371:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:06|Issue https://github.com/kubeflow/kubeflow/issues/4373:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:06|Issue https://github.com/kubeflow/kubeflow/issues/4373 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:44:06|Issue https://github.com/kubeflow/kubeflow/issues/4374:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:06|Issue https://github.com/kubeflow/kubeflow/issues/4374 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:44:06|Issue https://github.com/kubeflow/kubeflow/issues/4375:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:06|Issue https://github.com/kubeflow/kubeflow/issues/4375 remove from triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2019-11-26T15:44:07|Issue https://github.com/kubeflow/kubeflow/issues/4376:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:07|Issue https://github.com/kubeflow/kubeflow/issues/4377:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:07|Issue https://github.com/kubeflow/kubeflow/issues/4378:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:07|Issue https://github.com/kubeflow/kubeflow/issues/4379:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:07|Issue https://github.com/kubeflow/kubeflow/issues/4379 remove from triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2019-11-26T15:44:08|Issue https://github.com/kubeflow/kubeflow/issues/4381:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:08|Issue https://github.com/kubeflow/kubeflow/issues/4382:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:08|Issue https://github.com/kubeflow/kubeflow/issues/4386:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:08|Issue https://github.com/kubeflow/kubeflow/issues/4386 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:44:08|Issue https://github.com/kubeflow/kubeflow/issues/4388:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:08|Issue https://github.com/kubeflow/kubeflow/issues/4389:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:08|Issue: https://github.com/kubeflow/kubeflow/issues/4393; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:44:09|Issue https://github.com/kubeflow/kubeflow/issues/4393:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:09|Issue https://github.com/kubeflow/kubeflow/issues/4397:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:09|Issue https://github.com/kubeflow/kubeflow/issues/4400:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:09|Issue https://github.com/kubeflow/kubeflow/issues/4403:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:09|Issue https://github.com/kubeflow/kubeflow/issues/4403 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:44:09|Issue https://github.com/kubeflow/kubeflow/issues/4409:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:09|Issue: https://github.com/kubeflow/kubeflow/issues/4410; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:44:10|Issue https://github.com/kubeflow/kubeflow/issues/4410:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:10|Issue https://github.com/kubeflow/kubeflow/issues/4411:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:10|Issue https://github.com/kubeflow/kubeflow/issues/4414:
state:Issue needs triage:
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:10|Issue https://github.com/kubeflow/kubeflow/issues/4414 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:44:10|Issue: https://github.com/kubeflow/kubeflow/issues/4415; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:44:13|Issue https://github.com/kubeflow/kubeflow/issues/4415:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:13|Issue https://github.com/kubeflow/kubeflow/issues/4418:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:13|Issue https://github.com/kubeflow/kubeflow/issues/4418 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:44:13|Issue https://github.com/kubeflow/kubeflow/issues/4419:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:13|Issue https://github.com/kubeflow/kubeflow/issues/4421:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:13|Issue https://github.com/kubeflow/kubeflow/issues/4421 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:44:13|Issue https://github.com/kubeflow/kubeflow/issues/4423:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:13|Issue https://github.com/kubeflow/kubeflow/issues/4427:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:13|Issue https://github.com/kubeflow/kubeflow/issues/4428:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:13|Issue https://github.com/kubeflow/kubeflow/issues/4429:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:13|Issue https://github.com/kubeflow/kubeflow/issues/4429 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:44:13|Issue https://github.com/kubeflow/kubeflow/issues/4430:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:13|Issue https://github.com/kubeflow/kubeflow/issues/4430 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:44:13|Issue https://github.com/kubeflow/kubeflow/issues/4433:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:13|Issue https://github.com/kubeflow/kubeflow/issues/4433 remove from triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2019-11-26T15:44:13|Issue https://github.com/kubeflow/kubeflow/issues/4439:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:13|Issue https://github.com/kubeflow/kubeflow/issues/4440:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:13|Issue: https://github.com/kubeflow/kubeflow/issues/4441; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:44:14|Issue https://github.com/kubeflow/kubeflow/issues/4441:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:14|Issue https://github.com/kubeflow/kubeflow/issues/4442:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:14|Issue https://github.com/kubeflow/kubeflow/issues/4446:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:14|Issue https://github.com/kubeflow/kubeflow/issues/4450:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:14|Issue https://github.com/kubeflow/kubeflow/issues/4450 remove from triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2019-11-26T15:44:15|Issue https://github.com/kubeflow/kubeflow/issues/4453:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:15|Issue https://github.com/kubeflow/kubeflow/issues/4469:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:16|Issue https://github.com/kubeflow/kubeflow/issues/4471:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:16|Issue https://github.com/kubeflow/kubeflow/issues/4472:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:16|Issue https://github.com/kubeflow/kubeflow/issues/4473:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:16|Issue https://github.com/kubeflow/kubeflow/issues/4474:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:17|Issue https://github.com/kubeflow/kubeflow/issues/4477:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:18|Issue https://github.com/kubeflow/kubeflow/issues/4480:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:18|Issue https://github.com/kubeflow/kubeflow/issues/4482:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:19|Issue https://github.com/kubeflow/kubeflow/issues/4483:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:19|Issue https://github.com/kubeflow/kubeflow/issues/4486:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:20|Issue https://github.com/kubeflow/kubeflow/issues/4488:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:20|Issue https://github.com/kubeflow/kubeflow/issues/4491:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:20|Issue https://github.com/kubeflow/kubeflow/issues/4492:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:20|Issue https://github.com/kubeflow/kubeflow/issues/4495:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:20|Issue https://github.com/kubeflow/kubeflow/issues/4496:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:21|Issue https://github.com/kubeflow/kubeflow/issues/4497:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:21|Issue https://github.com/kubeflow/kubeflow/issues/4499:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:22|Issue: https://github.com/kubeflow/kubeflow/issues/4500; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:44:23|Issue https://github.com/kubeflow/kubeflow/issues/4500:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:24|Issue https://github.com/kubeflow/kubeflow/issues/4501:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:24|Issue https://github.com/kubeflow/kubeflow/issues/4502:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:25|Issue https://github.com/kubeflow/kubeflow/issues/4503:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:26|Issue https://github.com/kubeflow/kubeflow/issues/4504:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:27|Issue https://github.com/kubeflow/kubeflow/issues/4505:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:28|Issue https://github.com/kubeflow/kubeflow/issues/4506:
state:Issue needs triage:
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:29|Issue https://github.com/kubeflow/kubeflow/issues/4507:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:31|Issue https://github.com/kubeflow/kubeflow/issues/4508:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:32|Issue https://github.com/kubeflow/kubeflow/issues/4509:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:32|Issue https://github.com/kubeflow/kubeflow/issues/4510:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:33|Issue https://github.com/kubeflow/kubeflow/issues/4511:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:33|Issue https://github.com/kubeflow/kubeflow/issues/4512:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:34|Issue https://github.com/kubeflow/kubeflow/issues/4513:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:35|Issue https://github.com/kubeflow/kubeflow/issues/4514:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:37|Issue https://github.com/kubeflow/kubeflow/issues/4515:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:38|Issue https://github.com/kubeflow/kubeflow/issues/4516:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:39|Issue https://github.com/kubeflow/kubeflow/issues/4517:
state:Issue needs triage:
	 Issue needs an area label
	 Issues with priority in ['priority/p0', 'priority/p1'] need to be assigned to a project
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:40|Issue https://github.com/kubeflow/kubeflow/issues/4519:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:41|Issue https://github.com/kubeflow/kubeflow/issues/4520:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:42|Issue https://github.com/kubeflow/kubeflow/issues/4521:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:42|Issue https://github.com/kubeflow/kubeflow/issues/4523:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:43|Issue https://github.com/kubeflow/kubeflow/issues/4524:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:44|Issue https://github.com/kubeflow/kubeflow/issues/4527:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:44|Issue https://github.com/kubeflow/kubeflow/issues/4528:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:45|Issue https://github.com/kubeflow/kubeflow/issues/4529:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:46|Processing shard 9|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:44:46|Issue https://github.com/kubeflow/kubeflow/issues/4530:
state:Issue needs triage:
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:46|Issue https://github.com/kubeflow/kubeflow/issues/4530 already in triage project|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2019-11-26T15:44:51|kubeflow/kfserving has a total of 208 issues|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|374|
INFO|2019-11-26T15:44:51|Processing shard 0|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:44:51|Issue https://github.com/kubeflow/kfserving/issues/13:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:51|Issue https://github.com/kubeflow/kfserving/issues/14:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:51|Issue https://github.com/kubeflow/kfserving/issues/17:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:51|Issue https://github.com/kubeflow/kfserving/issues/18:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:51|Issue https://github.com/kubeflow/kfserving/issues/19:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:51|Issue https://github.com/kubeflow/kfserving/issues/33:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:51|Issue https://github.com/kubeflow/kfserving/issues/59:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:52|Issue https://github.com/kubeflow/kfserving/issues/60:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:53|Issue https://github.com/kubeflow/kfserving/issues/68:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:53|Issue https://github.com/kubeflow/kfserving/issues/79:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:53|Issue https://github.com/kubeflow/kfserving/issues/82:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:54|Issue https://github.com/kubeflow/kfserving/issues/97:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:54|Issue https://github.com/kubeflow/kfserving/issues/107:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:54|Issue https://github.com/kubeflow/kfserving/issues/113:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:54|Issue https://github.com/kubeflow/kfserving/issues/117:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:54|Issue https://github.com/kubeflow/kfserving/issues/119:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:54|Issue https://github.com/kubeflow/kfserving/issues/120:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:55|Issue https://github.com/kubeflow/kfserving/issues/121:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:55|Issue https://github.com/kubeflow/kfserving/issues/122:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:55|Issue https://github.com/kubeflow/kfserving/issues/127:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:55|Issue: https://github.com/kubeflow/kfserving/issues/129; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:44:57|Issue https://github.com/kubeflow/kfserving/issues/129:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:57|Issue https://github.com/kubeflow/kfserving/issues/133:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:57|Issue https://github.com/kubeflow/kfserving/issues/137:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:57|Issue https://github.com/kubeflow/kfserving/issues/139:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:58|Issue https://github.com/kubeflow/kfserving/issues/142:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:58|Issue https://github.com/kubeflow/kfserving/issues/144:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:59|Issue https://github.com/kubeflow/kfserving/issues/148:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:44:59|Issue https://github.com/kubeflow/kfserving/issues/157:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:00|Issue https://github.com/kubeflow/kfserving/issues/158:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:00|Issue https://github.com/kubeflow/kfserving/issues/160:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:00|Issue https://github.com/kubeflow/kfserving/issues/161:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:00|Issue https://github.com/kubeflow/kfserving/issues/162:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:01|Issue https://github.com/kubeflow/kfserving/issues/163:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:03|Issue https://github.com/kubeflow/kfserving/issues/165:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:03|Issue https://github.com/kubeflow/kfserving/issues/168:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:03|Issue https://github.com/kubeflow/kfserving/issues/170:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:03|Issue https://github.com/kubeflow/kfserving/issues/175:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:03|Issue https://github.com/kubeflow/kfserving/issues/183:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:04|Issue https://github.com/kubeflow/kfserving/issues/184:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:05|Issue https://github.com/kubeflow/kfserving/issues/188:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:05|Issue https://github.com/kubeflow/kfserving/issues/189:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:05|Issue https://github.com/kubeflow/kfserving/issues/190:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:06|Issue https://github.com/kubeflow/kfserving/issues/191:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:06|Issue https://github.com/kubeflow/kfserving/issues/192:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:06|Issue: https://github.com/kubeflow/kfserving/issues/196; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:45:07|Issue https://github.com/kubeflow/kfserving/issues/196:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:08|Issue https://github.com/kubeflow/kfserving/issues/201:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:09|Issue https://github.com/kubeflow/kfserving/issues/205:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:11|Issue https://github.com/kubeflow/kfserving/issues/209:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:11|Issue https://github.com/kubeflow/kfserving/issues/213:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:11|Issue https://github.com/kubeflow/kfserving/issues/217:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:11|Issue https://github.com/kubeflow/kfserving/issues/219:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:11|Issue https://github.com/kubeflow/kfserving/issues/221:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:11|Issue https://github.com/kubeflow/kfserving/issues/223:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:11|Issue https://github.com/kubeflow/kfserving/issues/225:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:11|Issue https://github.com/kubeflow/kfserving/issues/226:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:12|Issue https://github.com/kubeflow/kfserving/issues/233:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:12|Issue https://github.com/kubeflow/kfserving/issues/234:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:12|Issue https://github.com/kubeflow/kfserving/issues/235:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:12|Issue https://github.com/kubeflow/kfserving/issues/236:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:12|Issue https://github.com/kubeflow/kfserving/issues/246:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:12|Issue https://github.com/kubeflow/kfserving/issues/249:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:12|Issue https://github.com/kubeflow/kfserving/issues/252:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:12|Issue https://github.com/kubeflow/kfserving/issues/263:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:12|Issue https://github.com/kubeflow/kfserving/issues/264:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:12|Issue https://github.com/kubeflow/kfserving/issues/265:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:12|Issue https://github.com/kubeflow/kfserving/issues/268:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:12|Issue https://github.com/kubeflow/kfserving/issues/269:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:12|Issue https://github.com/kubeflow/kfserving/issues/270:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:13|Issue https://github.com/kubeflow/kfserving/issues/271:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:14|Issue https://github.com/kubeflow/kfserving/issues/273:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:15|Issue https://github.com/kubeflow/kfserving/issues/276:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:15|Issue https://github.com/kubeflow/kfserving/issues/277:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:15|Issue https://github.com/kubeflow/kfserving/issues/278:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:16|Issue https://github.com/kubeflow/kfserving/issues/280:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:17|Issue https://github.com/kubeflow/kfserving/issues/281:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:17|Issue https://github.com/kubeflow/kfserving/issues/284:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:18|Issue https://github.com/kubeflow/kfserving/issues/287:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:18|Issue https://github.com/kubeflow/kfserving/issues/291:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:18|Issue https://github.com/kubeflow/kfserving/issues/294:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:18|Issue https://github.com/kubeflow/kfserving/issues/296:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:18|Issue https://github.com/kubeflow/kfserving/issues/299:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:20|Issue https://github.com/kubeflow/kfserving/issues/301:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:20|Issue https://github.com/kubeflow/kfserving/issues/303:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:20|Issue https://github.com/kubeflow/kfserving/issues/306:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:20|Issue https://github.com/kubeflow/kfserving/issues/310:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:21|Issue https://github.com/kubeflow/kfserving/issues/311:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:21|Issue https://github.com/kubeflow/kfserving/issues/313:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:21|Issue https://github.com/kubeflow/kfserving/issues/314:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:21|Issue: https://github.com/kubeflow/kfserving/issues/317; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:45:22|Issue https://github.com/kubeflow/kfserving/issues/317:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:22|Issue https://github.com/kubeflow/kfserving/issues/318:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:22|Issue https://github.com/kubeflow/kfserving/issues/321:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:24|Issue https://github.com/kubeflow/kfserving/issues/322:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:25|Issue https://github.com/kubeflow/kfserving/issues/323:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:26|Issue https://github.com/kubeflow/kfserving/issues/324:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:27|Issue https://github.com/kubeflow/kfserving/issues/325:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:27|Issue https://github.com/kubeflow/kfserving/issues/326:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:27|Issue https://github.com/kubeflow/kfserving/issues/331:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:27|Issue https://github.com/kubeflow/kfserving/issues/334:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:27|Issue https://github.com/kubeflow/kfserving/issues/335:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:28|Issue https://github.com/kubeflow/kfserving/issues/338:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:33|Processing shard 1|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:45:33|Issue https://github.com/kubeflow/kfserving/issues/341:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:34|Issue https://github.com/kubeflow/kfserving/issues/342:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:34|Issue https://github.com/kubeflow/kfserving/issues/343:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:34|Issue https://github.com/kubeflow/kfserving/issues/344:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:34|Issue https://github.com/kubeflow/kfserving/issues/347:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:35|Issue https://github.com/kubeflow/kfserving/issues/351:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:35|Issue https://github.com/kubeflow/kfserving/issues/353:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:36|Issue https://github.com/kubeflow/kfserving/issues/360:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:36|Issue https://github.com/kubeflow/kfserving/issues/361:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:36|Issue https://github.com/kubeflow/kfserving/issues/363:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:36|Issue https://github.com/kubeflow/kfserving/issues/366:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:37|Issue https://github.com/kubeflow/kfserving/issues/369:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:38|Issue https://github.com/kubeflow/kfserving/issues/371:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:39|Issue https://github.com/kubeflow/kfserving/issues/374:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:41|Issue https://github.com/kubeflow/kfserving/issues/376:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:42|Issue https://github.com/kubeflow/kfserving/issues/379:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:42|Issue https://github.com/kubeflow/kfserving/issues/384:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:44|Issue https://github.com/kubeflow/kfserving/issues/386:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:45|Issue https://github.com/kubeflow/kfserving/issues/387:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:45|Issue https://github.com/kubeflow/kfserving/issues/391:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:45|Issue https://github.com/kubeflow/kfserving/issues/394:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:45|Issue https://github.com/kubeflow/kfserving/issues/396:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:45|Issue https://github.com/kubeflow/kfserving/issues/398:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:45|Issue: https://github.com/kubeflow/kfserving/issues/399; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:45:46|Issue https://github.com/kubeflow/kfserving/issues/399:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:46|Issue https://github.com/kubeflow/kfserving/issues/402:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:47|Issue https://github.com/kubeflow/kfserving/issues/403:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:49|Issue https://github.com/kubeflow/kfserving/issues/404:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:51|Issue https://github.com/kubeflow/kfserving/issues/405:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:52|Issue https://github.com/kubeflow/kfserving/issues/407:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:53|Issue https://github.com/kubeflow/kfserving/issues/411:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:53|Issue https://github.com/kubeflow/kfserving/issues/412:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:54|Issue https://github.com/kubeflow/kfserving/issues/413:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:54|Issue https://github.com/kubeflow/kfserving/issues/414:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:54|Issue https://github.com/kubeflow/kfserving/issues/415:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:54|Issue https://github.com/kubeflow/kfserving/issues/416:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:54|Issue https://github.com/kubeflow/kfserving/issues/417:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:54|Issue https://github.com/kubeflow/kfserving/issues/419:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:56|Issue https://github.com/kubeflow/kfserving/issues/423:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:56|Issue https://github.com/kubeflow/kfserving/issues/426:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:56|Issue https://github.com/kubeflow/kfserving/issues/427:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:56|Issue https://github.com/kubeflow/kfserving/issues/428:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:56|Issue https://github.com/kubeflow/kfserving/issues/429:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:56|Issue https://github.com/kubeflow/kfserving/issues/431:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:57|Issue https://github.com/kubeflow/kfserving/issues/432:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:58|Issue https://github.com/kubeflow/kfserving/issues/433:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:58|Issue https://github.com/kubeflow/kfserving/issues/435:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:45:59|Issue https://github.com/kubeflow/kfserving/issues/436:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:01|Issue https://github.com/kubeflow/kfserving/issues/440:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:01|Issue https://github.com/kubeflow/kfserving/issues/441:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:01|Issue https://github.com/kubeflow/kfserving/issues/445:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:01|Issue https://github.com/kubeflow/kfserving/issues/447:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:02|Issue https://github.com/kubeflow/kfserving/issues/451:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:02|Issue https://github.com/kubeflow/kfserving/issues/453:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:02|Issue https://github.com/kubeflow/kfserving/issues/455:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:02|Issue https://github.com/kubeflow/kfserving/issues/456:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:04|Issue https://github.com/kubeflow/kfserving/issues/458:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:04|Issue https://github.com/kubeflow/kfserving/issues/460:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:04|Issue https://github.com/kubeflow/kfserving/issues/462:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:05|Issue https://github.com/kubeflow/kfserving/issues/469:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:06|Issue https://github.com/kubeflow/kfserving/issues/474:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:06|Issue https://github.com/kubeflow/kfserving/issues/479:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:06|Issue https://github.com/kubeflow/kfserving/issues/480:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:07|Issue https://github.com/kubeflow/kfserving/issues/481:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:09|Issue https://github.com/kubeflow/kfserving/issues/483:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:09|Issue https://github.com/kubeflow/kfserving/issues/485:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:11|Issue: https://github.com/kubeflow/kfserving/issues/486; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:46:12|Issue https://github.com/kubeflow/kfserving/issues/486:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:12|Issue https://github.com/kubeflow/kfserving/issues/489:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:12|Issue https://github.com/kubeflow/kfserving/issues/490:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:12|Issue https://github.com/kubeflow/kfserving/issues/493:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:13|Issue https://github.com/kubeflow/kfserving/issues/494:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:14|Issue https://github.com/kubeflow/kfserving/issues/495:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:14|Issue https://github.com/kubeflow/kfserving/issues/496:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:14|Issue https://github.com/kubeflow/kfserving/issues/497:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:15|Issue https://github.com/kubeflow/kfserving/issues/499:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:17|Issue https://github.com/kubeflow/kfserving/issues/504:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:18|Issue https://github.com/kubeflow/kfserving/issues/505:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:19|Issue https://github.com/kubeflow/kfserving/issues/508:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:19|Issue https://github.com/kubeflow/kfserving/issues/511:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:19|Issue https://github.com/kubeflow/kfserving/issues/513:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:19|Issue https://github.com/kubeflow/kfserving/issues/515:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:19|Issue https://github.com/kubeflow/kfserving/issues/522:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:19|Issue https://github.com/kubeflow/kfserving/issues/527:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:19|Issue https://github.com/kubeflow/kfserving/issues/530:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:21|Issue https://github.com/kubeflow/kfserving/issues/533:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:22|Issue https://github.com/kubeflow/kfserving/issues/535:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:22|Issue https://github.com/kubeflow/kfserving/issues/537:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:23|Issue https://github.com/kubeflow/kfserving/issues/538:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:24|Issue https://github.com/kubeflow/kfserving/issues/539:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:26|Issue https://github.com/kubeflow/kfserving/issues/541:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:26|Issue https://github.com/kubeflow/kfserving/issues/542:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:26|Issue https://github.com/kubeflow/kfserving/issues/546:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:27|Issue https://github.com/kubeflow/kfserving/issues/547:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:27|Issue https://github.com/kubeflow/kfserving/issues/548:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:28|Issue https://github.com/kubeflow/kfserving/issues/551:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:28|Issue https://github.com/kubeflow/kfserving/issues/552:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:28|Issue https://github.com/kubeflow/kfserving/issues/557:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:28|Issue https://github.com/kubeflow/kfserving/issues/558:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:29|Issue https://github.com/kubeflow/kfserving/issues/562:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:30|Issue https://github.com/kubeflow/kfserving/issues/563:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:32|Issue https://github.com/kubeflow/kfserving/issues/564:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:34|Processing shard 2|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:46:34|Issue https://github.com/kubeflow/kfserving/issues/565:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:34|Issue https://github.com/kubeflow/kfserving/issues/567:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:35|Issue https://github.com/kubeflow/kfserving/issues/568:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:35|Issue https://github.com/kubeflow/kfserving/issues/569:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:35|Issue https://github.com/kubeflow/kfserving/issues/572:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:37|Issue https://github.com/kubeflow/kfserving/issues/574:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:39|Issue https://github.com/kubeflow/kfserving/issues/576:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:40|Issue https://github.com/kubeflow/kfserving/issues/580:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:47|kubeflow/manifests has a total of 157 issues|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|374|
INFO|2019-11-26T15:46:47|Processing shard 0|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:46:47|Issue https://github.com/kubeflow/manifests/issues/10:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:47|Issue https://github.com/kubeflow/manifests/issues/18:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:47|Issue https://github.com/kubeflow/manifests/issues/23:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:48|Issue https://github.com/kubeflow/manifests/issues/24:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:49|Issue https://github.com/kubeflow/manifests/issues/55:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:49|Issue https://github.com/kubeflow/manifests/issues/115:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:49|Issue https://github.com/kubeflow/manifests/issues/116:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:49|Issue https://github.com/kubeflow/manifests/issues/117:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:49|Issue https://github.com/kubeflow/manifests/issues/118:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:49|Issue https://github.com/kubeflow/manifests/issues/119:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:49|Issue https://github.com/kubeflow/manifests/issues/120:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:49|Issue https://github.com/kubeflow/manifests/issues/122:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:50|Issue https://github.com/kubeflow/manifests/issues/123:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:51|Issue https://github.com/kubeflow/manifests/issues/126:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:51|Issue https://github.com/kubeflow/manifests/issues/127:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:51|Issue https://github.com/kubeflow/manifests/issues/130:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:53|Issue https://github.com/kubeflow/manifests/issues/133:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:53|Issue https://github.com/kubeflow/manifests/issues/135:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:53|Issue https://github.com/kubeflow/manifests/issues/136:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:54|Issue https://github.com/kubeflow/manifests/issues/137:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:54|Issue https://github.com/kubeflow/manifests/issues/143:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:54|Issue https://github.com/kubeflow/manifests/issues/144:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:54|Issue https://github.com/kubeflow/manifests/issues/145:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:55|Issue https://github.com/kubeflow/manifests/issues/146:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:55|Issue https://github.com/kubeflow/manifests/issues/147:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs an area label
	 Issues with priority in ['priority/p0', 'priority/p1'] need to be assigned to a project
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:56|Issue https://github.com/kubeflow/manifests/issues/151:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:56|Issue https://github.com/kubeflow/manifests/issues/152:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:56|Issue https://github.com/kubeflow/manifests/issues/164:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs an area label
	 Issues with priority in ['priority/p0', 'priority/p1'] need to be assigned to a project
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:57|Issue https://github.com/kubeflow/manifests/issues/167:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:46:58|Issue https://github.com/kubeflow/manifests/issues/171:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:00|Issue https://github.com/kubeflow/manifests/issues/172:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:01|Issue: https://github.com/kubeflow/manifests/issues/176; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:47:03|Issue https://github.com/kubeflow/manifests/issues/176:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:03|Issue https://github.com/kubeflow/manifests/issues/177:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:03|Issue https://github.com/kubeflow/manifests/issues/178:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:03|Issue https://github.com/kubeflow/manifests/issues/179:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:03|Issue https://github.com/kubeflow/manifests/issues/180:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:03|Issue https://github.com/kubeflow/manifests/issues/181:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:03|Issue https://github.com/kubeflow/manifests/issues/183:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:03|Issue https://github.com/kubeflow/manifests/issues/190:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs an area label
	 Issues with priority in ['priority/p0', 'priority/p1'] need to be assigned to a project
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:04|Issue https://github.com/kubeflow/manifests/issues/193:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:04|Issue https://github.com/kubeflow/manifests/issues/216:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:04|Issue https://github.com/kubeflow/manifests/issues/217:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:04|Issue https://github.com/kubeflow/manifests/issues/222:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:05|Issue https://github.com/kubeflow/manifests/issues/227:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:05|Issue https://github.com/kubeflow/manifests/issues/228:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:05|Issue: https://github.com/kubeflow/manifests/issues/229; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:47:06|Issue https://github.com/kubeflow/manifests/issues/229:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:07|Issue https://github.com/kubeflow/manifests/issues/230:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:07|Issue https://github.com/kubeflow/manifests/issues/231:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:09|Issue https://github.com/kubeflow/manifests/issues/232:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:10|Issue https://github.com/kubeflow/manifests/issues/233:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:11|Issue https://github.com/kubeflow/manifests/issues/236:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:11|Issue https://github.com/kubeflow/manifests/issues/237:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:11|Issue: https://github.com/kubeflow/manifests/issues/241; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:47:13|Issue https://github.com/kubeflow/manifests/issues/241:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:13|Issue https://github.com/kubeflow/manifests/issues/256:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:14|Issue: https://github.com/kubeflow/manifests/issues/267; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:47:15|Issue https://github.com/kubeflow/manifests/issues/267:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:15|Issue https://github.com/kubeflow/manifests/issues/271:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:15|Issue https://github.com/kubeflow/manifests/issues/272:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:15|Issue https://github.com/kubeflow/manifests/issues/283:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:15|Issue https://github.com/kubeflow/manifests/issues/284:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:17|Issue https://github.com/kubeflow/manifests/issues/288:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs an area label
	 Issues with priority in ['priority/p0', 'priority/p1'] need to be assigned to a project
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:18|Issue https://github.com/kubeflow/manifests/issues/296:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs an area label
	 Issues with priority in ['priority/p0', 'priority/p1'] need to be assigned to a project
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:19|Issue: https://github.com/kubeflow/manifests/issues/306; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:47:20|Issue https://github.com/kubeflow/manifests/issues/306:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:21|Issue https://github.com/kubeflow/manifests/issues/308:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:21|Issue https://github.com/kubeflow/manifests/issues/313:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:21|Issue https://github.com/kubeflow/manifests/issues/315:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:21|Issue https://github.com/kubeflow/manifests/issues/316:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:21|Issue https://github.com/kubeflow/manifests/issues/317:
state:Issue needs triage:
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:22|Issue https://github.com/kubeflow/manifests/issues/326:
state:Issue needs triage:
	 Issue needs an area label
	 Issues with priority in ['priority/p0', 'priority/p1'] need to be assigned to a project
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:24|Issue https://github.com/kubeflow/manifests/issues/329:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:24|Issue https://github.com/kubeflow/manifests/issues/341:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:24|Issue https://github.com/kubeflow/manifests/issues/343:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:25|Issue https://github.com/kubeflow/manifests/issues/345:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:25|Issue https://github.com/kubeflow/manifests/issues/348:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:25|Issue https://github.com/kubeflow/manifests/issues/356:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:25|Issue https://github.com/kubeflow/manifests/issues/361:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:26|Issue https://github.com/kubeflow/manifests/issues/365:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:26|Issue https://github.com/kubeflow/manifests/issues/371:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:26|Issue https://github.com/kubeflow/manifests/issues/372:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:26|Issue https://github.com/kubeflow/manifests/issues/373:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:26|Issue https://github.com/kubeflow/manifests/issues/375:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:26|Issue https://github.com/kubeflow/manifests/issues/384:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:28|Issue https://github.com/kubeflow/manifests/issues/385:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:29|Issue https://github.com/kubeflow/manifests/issues/386:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:30|Issue https://github.com/kubeflow/manifests/issues/391:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:32|Issue https://github.com/kubeflow/manifests/issues/395:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:33|Issue https://github.com/kubeflow/manifests/issues/399:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:33|Issue https://github.com/kubeflow/manifests/issues/408:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:33|Issue https://github.com/kubeflow/manifests/issues/411:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:34|Issue https://github.com/kubeflow/manifests/issues/412:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:34|Issue https://github.com/kubeflow/manifests/issues/415:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:36|Issue https://github.com/kubeflow/manifests/issues/417:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs an area label
	 Issues with priority in ['priority/p0', 'priority/p1'] need to be assigned to a project
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:37|Issue https://github.com/kubeflow/manifests/issues/420:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:39|Issue https://github.com/kubeflow/manifests/issues/422:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:40|Issue https://github.com/kubeflow/manifests/issues/423:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:41|Issue https://github.com/kubeflow/manifests/issues/425:
state:Issue needs triage:
	 Issue needs an area label
	 Issues with priority in ['priority/p0', 'priority/p1'] need to be assigned to a project
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:43|Issue: https://github.com/kubeflow/manifests/issues/426; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:47:44|Issue https://github.com/kubeflow/manifests/issues/426:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:44|Issue https://github.com/kubeflow/manifests/issues/436:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:44|Issue https://github.com/kubeflow/manifests/issues/445:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:44|Issue https://github.com/kubeflow/manifests/issues/449:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:45|Issue https://github.com/kubeflow/manifests/issues/450:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:48|Processing shard 1|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:47:48|Issue https://github.com/kubeflow/manifests/issues/452:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:48|Issue https://github.com/kubeflow/manifests/issues/454:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:48|Issue https://github.com/kubeflow/manifests/issues/456:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:48|Issue https://github.com/kubeflow/manifests/issues/459:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:48|Issue https://github.com/kubeflow/manifests/issues/463:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:48|Issue https://github.com/kubeflow/manifests/issues/464:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:48|Issue https://github.com/kubeflow/manifests/issues/467:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:48|Issue https://github.com/kubeflow/manifests/issues/469:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:48|Issue https://github.com/kubeflow/manifests/issues/472:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:48|Issue https://github.com/kubeflow/manifests/issues/474:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:48|Issue https://github.com/kubeflow/manifests/issues/476:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:48|Issue https://github.com/kubeflow/manifests/issues/479:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:48|Issue https://github.com/kubeflow/manifests/issues/480:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:48|Issue https://github.com/kubeflow/manifests/issues/481:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:49|Issue https://github.com/kubeflow/manifests/issues/482:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:49|Issue https://github.com/kubeflow/manifests/issues/483:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:49|Issue https://github.com/kubeflow/manifests/issues/484:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:50|Issue https://github.com/kubeflow/manifests/issues/485:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:52|Issue https://github.com/kubeflow/manifests/issues/486:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:53|Issue https://github.com/kubeflow/manifests/issues/487:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:53|Issue https://github.com/kubeflow/manifests/issues/488:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:53|Issue https://github.com/kubeflow/manifests/issues/489:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:53|Issue https://github.com/kubeflow/manifests/issues/495:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:53|Issue https://github.com/kubeflow/manifests/issues/508:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:53|Issue https://github.com/kubeflow/manifests/issues/509:
state:Issue needs triage:
	 Issue needs a kind label
	 Issues with priority in ['priority/p0', 'priority/p1'] need to be assigned to a project
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:54|Issue https://github.com/kubeflow/manifests/issues/510:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:54|Issue https://github.com/kubeflow/manifests/issues/512:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:56|Issue https://github.com/kubeflow/manifests/issues/517:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:56|Issue https://github.com/kubeflow/manifests/issues/520:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:57|Issue https://github.com/kubeflow/manifests/issues/521:
state:Issue needs triage:
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:47:59|Issue https://github.com/kubeflow/manifests/issues/522:
state:Issue needs triage:
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:01|Issue https://github.com/kubeflow/manifests/issues/524:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:01|Issue https://github.com/kubeflow/manifests/issues/525:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:02|Issue https://github.com/kubeflow/manifests/issues/527:
state:Issue needs triage:
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:04|Issue https://github.com/kubeflow/manifests/issues/528:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:04|Issue https://github.com/kubeflow/manifests/issues/536:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:04|Issue https://github.com/kubeflow/manifests/issues/538:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:05|Issue https://github.com/kubeflow/manifests/issues/539:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:07|Issue https://github.com/kubeflow/manifests/issues/540:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:07|Issue: https://github.com/kubeflow/manifests/issues/543; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:48:08|Issue https://github.com/kubeflow/manifests/issues/543:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:08|Issue https://github.com/kubeflow/manifests/issues/544:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:08|Issue https://github.com/kubeflow/manifests/issues/547:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:09|Issue https://github.com/kubeflow/manifests/issues/548:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:10|Issue https://github.com/kubeflow/manifests/issues/561:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:10|Issue https://github.com/kubeflow/manifests/issues/566:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:12|Issue https://github.com/kubeflow/manifests/issues/585:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:12|Issue https://github.com/kubeflow/manifests/issues/587:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:13|Issue https://github.com/kubeflow/manifests/issues/591:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:13|Issue https://github.com/kubeflow/manifests/issues/593:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:13|Issue https://github.com/kubeflow/manifests/issues/595:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:13|Issue: https://github.com/kubeflow/manifests/issues/599; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:48:14|Issue https://github.com/kubeflow/manifests/issues/599:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:14|Issue https://github.com/kubeflow/manifests/issues/613:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:14|Issue https://github.com/kubeflow/manifests/issues/616:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:15|Issue https://github.com/kubeflow/manifests/issues/618:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:17|Issue https://github.com/kubeflow/manifests/issues/619:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:18|Issue https://github.com/kubeflow/manifests/issues/625:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:19|Issue https://github.com/kubeflow/manifests/issues/629:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:24|kubeflow/metadata has a total of 65 issues|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|374|
INFO|2019-11-26T15:48:24|Processing shard 0|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:48:24|Issue https://github.com/kubeflow/metadata/issues/5:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:24|Issue: https://github.com/kubeflow/metadata/issues/6; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:48:25|Issue https://github.com/kubeflow/metadata/issues/6:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:25|Issue: https://github.com/kubeflow/metadata/issues/7; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:48:26|Issue https://github.com/kubeflow/metadata/issues/7:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:26|Issue https://github.com/kubeflow/metadata/issues/8:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:26|Issue https://github.com/kubeflow/metadata/issues/19:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:26|Issue https://github.com/kubeflow/metadata/issues/22:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:27|Issue https://github.com/kubeflow/metadata/issues/28:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:27|Issue https://github.com/kubeflow/metadata/issues/40:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:27|Issue https://github.com/kubeflow/metadata/issues/48:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:27|Issue https://github.com/kubeflow/metadata/issues/55:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:27|Issue https://github.com/kubeflow/metadata/issues/60:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:27|Issue https://github.com/kubeflow/metadata/issues/63:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:27|Issue https://github.com/kubeflow/metadata/issues/67:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:27|Issue https://github.com/kubeflow/metadata/issues/70:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:27|Issue https://github.com/kubeflow/metadata/issues/71:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:27|Issue https://github.com/kubeflow/metadata/issues/73:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:29|Issue https://github.com/kubeflow/metadata/issues/76:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:30|Issue https://github.com/kubeflow/metadata/issues/77:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:31|Issue https://github.com/kubeflow/metadata/issues/78:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:33|Issue https://github.com/kubeflow/metadata/issues/79:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:34|Issue https://github.com/kubeflow/metadata/issues/81:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:36|Issue https://github.com/kubeflow/metadata/issues/87:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:36|Issue https://github.com/kubeflow/metadata/issues/88:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:37|Issue https://github.com/kubeflow/metadata/issues/91:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:37|Issue https://github.com/kubeflow/metadata/issues/94:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:37|Issue: https://github.com/kubeflow/metadata/issues/97; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:48:38|Issue https://github.com/kubeflow/metadata/issues/97:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:38|Issue https://github.com/kubeflow/metadata/issues/101:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:38|Issue https://github.com/kubeflow/metadata/issues/102:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:40|Issue https://github.com/kubeflow/metadata/issues/103:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:40|Issue https://github.com/kubeflow/metadata/issues/105:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:41|Issue https://github.com/kubeflow/metadata/issues/106:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:41|Issue https://github.com/kubeflow/metadata/issues/107:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:43|Issue https://github.com/kubeflow/metadata/issues/108:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:44|Issue https://github.com/kubeflow/metadata/issues/114:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:46|Issue https://github.com/kubeflow/metadata/issues/116:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:47|Issue https://github.com/kubeflow/metadata/issues/117:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:49|Issue https://github.com/kubeflow/metadata/issues/119:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:50|Issue https://github.com/kubeflow/metadata/issues/120:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:50|Issue https://github.com/kubeflow/metadata/issues/121:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:50|Issue https://github.com/kubeflow/metadata/issues/123:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:50|Issue https://github.com/kubeflow/metadata/issues/125:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:50|Issue https://github.com/kubeflow/metadata/issues/127:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:50|Issue https://github.com/kubeflow/metadata/issues/128:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:52|Issue https://github.com/kubeflow/metadata/issues/133:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:53|Issue https://github.com/kubeflow/metadata/issues/134:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:55|Issue https://github.com/kubeflow/metadata/issues/135:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:57|Issue https://github.com/kubeflow/metadata/issues/136:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:48:58|Issue: https://github.com/kubeflow/metadata/issues/138; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:49:00|Issue https://github.com/kubeflow/metadata/issues/138:
state:Issue needs triage:
	 Issue needs an area label
	 Issues with priority in ['priority/p0', 'priority/p1'] need to be assigned to a project
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:01|Issue https://github.com/kubeflow/metadata/issues/140:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:03|Issue https://github.com/kubeflow/metadata/issues/141:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:04|Issue https://github.com/kubeflow/metadata/issues/145:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:06|Issue https://github.com/kubeflow/metadata/issues/146:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:07|Issue https://github.com/kubeflow/metadata/issues/147:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:07|Issue https://github.com/kubeflow/metadata/issues/148:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:07|Issue https://github.com/kubeflow/metadata/issues/149:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:09|Issue https://github.com/kubeflow/metadata/issues/150:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:11|Issue https://github.com/kubeflow/metadata/issues/151:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:12|Issue https://github.com/kubeflow/metadata/issues/152:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:14|Issue https://github.com/kubeflow/metadata/issues/153:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:14|Issue https://github.com/kubeflow/metadata/issues/154:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:15|Issue https://github.com/kubeflow/metadata/issues/155:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:17|Issue https://github.com/kubeflow/metadata/issues/161:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:17|Issue https://github.com/kubeflow/metadata/issues/166:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:18|Issue https://github.com/kubeflow/metadata/issues/171:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:20|Issue https://github.com/kubeflow/metadata/issues/174:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:23|kubeflow/pytorch-operator has a total of 18 issues|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|374|
INFO|2019-11-26T15:49:23|Processing shard 0|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:49:23|Issue https://github.com/kubeflow/pytorch-operator/issues/89:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:24|Issue https://github.com/kubeflow/pytorch-operator/issues/160:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:24|Issue https://github.com/kubeflow/pytorch-operator/issues/174:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:24|Issue https://github.com/kubeflow/pytorch-operator/issues/182:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:24|Issue https://github.com/kubeflow/pytorch-operator/issues/183:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:26|Issue https://github.com/kubeflow/pytorch-operator/issues/185:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:28|Issue: https://github.com/kubeflow/pytorch-operator/issues/186; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:49:29|Issue https://github.com/kubeflow/pytorch-operator/issues/186:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:29|Issue https://github.com/kubeflow/pytorch-operator/issues/190:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:30|Issue https://github.com/kubeflow/pytorch-operator/issues/195:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:30|Issue https://github.com/kubeflow/pytorch-operator/issues/202:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:30|Issue https://github.com/kubeflow/pytorch-operator/issues/203:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:32|Issue https://github.com/kubeflow/pytorch-operator/issues/205:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:32|Issue https://github.com/kubeflow/pytorch-operator/issues/206:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:32|Issue https://github.com/kubeflow/pytorch-operator/issues/211:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:32|Issue https://github.com/kubeflow/pytorch-operator/issues/214:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:33|Issue https://github.com/kubeflow/pytorch-operator/issues/215:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:35|Issue https://github.com/kubeflow/pytorch-operator/issues/219:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:36|Issue https://github.com/kubeflow/pytorch-operator/issues/224:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:41|kubeflow/testing has a total of 115 issues|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|374|
INFO|2019-11-26T15:49:41|Processing shard 0|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:49:41|Issue https://github.com/kubeflow/testing/issues/5:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:41|Issue https://github.com/kubeflow/testing/issues/11:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:41|Issue https://github.com/kubeflow/testing/issues/13:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:41|Issue https://github.com/kubeflow/testing/issues/22:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:41|Issue https://github.com/kubeflow/testing/issues/32:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:41|Issue https://github.com/kubeflow/testing/issues/42:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:41|Issue https://github.com/kubeflow/testing/issues/44:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:41|Issue https://github.com/kubeflow/testing/issues/46:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:41|Issue https://github.com/kubeflow/testing/issues/49:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:41|Issue: https://github.com/kubeflow/testing/issues/53; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:49:43|Issue https://github.com/kubeflow/testing/issues/53:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:43|Issue https://github.com/kubeflow/testing/issues/55:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:43|Issue https://github.com/kubeflow/testing/issues/75:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:44|Issue https://github.com/kubeflow/testing/issues/78:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:44|Issue https://github.com/kubeflow/testing/issues/88:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:44|Issue https://github.com/kubeflow/testing/issues/103:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:44|Issue https://github.com/kubeflow/testing/issues/108:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:44|Issue https://github.com/kubeflow/testing/issues/124:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:44|Issue https://github.com/kubeflow/testing/issues/168:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:44|Issue https://github.com/kubeflow/testing/issues/173:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:44|Issue https://github.com/kubeflow/testing/issues/179:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:44|Issue https://github.com/kubeflow/testing/issues/181:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:44|Issue https://github.com/kubeflow/testing/issues/182:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:44|Issue https://github.com/kubeflow/testing/issues/202:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:45|Issue https://github.com/kubeflow/testing/issues/205:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:45|Issue https://github.com/kubeflow/testing/issues/209:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:45|Issue https://github.com/kubeflow/testing/issues/225:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:45|Issue https://github.com/kubeflow/testing/issues/238:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:45|Issue https://github.com/kubeflow/testing/issues/240:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:45|Issue https://github.com/kubeflow/testing/issues/243:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:47|Issue https://github.com/kubeflow/testing/issues/247:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:47|Issue https://github.com/kubeflow/testing/issues/252:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:47|Issue https://github.com/kubeflow/testing/issues/254:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:47|Issue https://github.com/kubeflow/testing/issues/256:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:47|Issue https://github.com/kubeflow/testing/issues/257:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:47|Issue https://github.com/kubeflow/testing/issues/259:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:48|Issue https://github.com/kubeflow/testing/issues/260:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:50|Issue https://github.com/kubeflow/testing/issues/264:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:50|Issue https://github.com/kubeflow/testing/issues/267:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:51|Issue https://github.com/kubeflow/testing/issues/275:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:53|Issue https://github.com/kubeflow/testing/issues/282:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:53|Issue https://github.com/kubeflow/testing/issues/284:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:53|Issue https://github.com/kubeflow/testing/issues/288:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:55|Issue https://github.com/kubeflow/testing/issues/292:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:55|Issue https://github.com/kubeflow/testing/issues/316:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:55|Issue https://github.com/kubeflow/testing/issues/324:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:55|Issue https://github.com/kubeflow/testing/issues/332:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:55|Issue https://github.com/kubeflow/testing/issues/342:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:55|Issue https://github.com/kubeflow/testing/issues/355:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:55|Issue https://github.com/kubeflow/testing/issues/364:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:55|Issue https://github.com/kubeflow/testing/issues/366:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:55|Issue https://github.com/kubeflow/testing/issues/368:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:55|Issue: https://github.com/kubeflow/testing/issues/372; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:49:56|Issue https://github.com/kubeflow/testing/issues/372:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:57|Issue https://github.com/kubeflow/testing/issues/373:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:57|Issue https://github.com/kubeflow/testing/issues/379:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:57|Issue https://github.com/kubeflow/testing/issues/380:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:57|Issue https://github.com/kubeflow/testing/issues/391:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:57|Issue https://github.com/kubeflow/testing/issues/393:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:57|Issue https://github.com/kubeflow/testing/issues/400:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:57|Issue https://github.com/kubeflow/testing/issues/403:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:57|Issue https://github.com/kubeflow/testing/issues/406:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:57|Issue https://github.com/kubeflow/testing/issues/407:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:49:57|Issue: https://github.com/kubeflow/testing/issues/412; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:49:58|Issue https://github.com/kubeflow/testing/issues/412:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:00|Issue https://github.com/kubeflow/testing/issues/413:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:00|Issue https://github.com/kubeflow/testing/issues/415:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:00|Issue https://github.com/kubeflow/testing/issues/416:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:02|Issue https://github.com/kubeflow/testing/issues/417:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:02|Issue https://github.com/kubeflow/testing/issues/421:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:02|Issue https://github.com/kubeflow/testing/issues/422:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:02|Issue: https://github.com/kubeflow/testing/issues/423; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:50:03|Issue https://github.com/kubeflow/testing/issues/423:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:03|Issue https://github.com/kubeflow/testing/issues/424:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:05|Issue https://github.com/kubeflow/testing/issues/425:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:06|Issue https://github.com/kubeflow/testing/issues/427:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:06|Issue https://github.com/kubeflow/testing/issues/429:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:06|Issue https://github.com/kubeflow/testing/issues/435:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:06|Issue https://github.com/kubeflow/testing/issues/437:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:06|Issue https://github.com/kubeflow/testing/issues/438:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:06|Issue https://github.com/kubeflow/testing/issues/439:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:06|Issue: https://github.com/kubeflow/testing/issues/440; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:50:07|Issue https://github.com/kubeflow/testing/issues/440:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:07|Issue https://github.com/kubeflow/testing/issues/444:
state:Issue needs triage:
	 Issue needs a kind label
	 Issues with priority in ['priority/p0', 'priority/p1'] need to be assigned to a project
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:09|Issue https://github.com/kubeflow/testing/issues/450:
state:Issue needs triage:
	 Issues with priority in ['priority/p0', 'priority/p1'] need to be assigned to a project
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:10|Issue https://github.com/kubeflow/testing/issues/455:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:10|Issue: https://github.com/kubeflow/testing/issues/457; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:50:12|Issue https://github.com/kubeflow/testing/issues/457:
state:Issue needs triage:
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:13|Issue https://github.com/kubeflow/testing/issues/459:
state:Issue needs triage:
	 Issues with priority in ['priority/p0', 'priority/p1'] need to be assigned to a project
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:15|Issue https://github.com/kubeflow/testing/issues/460:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:17|Issue https://github.com/kubeflow/testing/issues/461:
state:Issue needs triage:
	 Issue needs a kind label
	 Issues with priority in ['priority/p0', 'priority/p1'] need to be assigned to a project
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:19|Issue https://github.com/kubeflow/testing/issues/464:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:19|Issue https://github.com/kubeflow/testing/issues/465:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:19|Issue https://github.com/kubeflow/testing/issues/467:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:20|Issue https://github.com/kubeflow/testing/issues/468:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:22|Issue https://github.com/kubeflow/testing/issues/469:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:23|Issue https://github.com/kubeflow/testing/issues/471:
state:Issue needs triage:
	 Issue needs a kind label
	 Issues with priority in ['priority/p0', 'priority/p1'] need to be assigned to a project
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:25|Issue https://github.com/kubeflow/testing/issues/473:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs an area label
	 Issues with priority in ['priority/p0', 'priority/p1'] need to be assigned to a project
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:27|Issue: https://github.com/kubeflow/testing/issues/475; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:50:28|Issue https://github.com/kubeflow/testing/issues/475:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:30|Issue https://github.com/kubeflow/testing/issues/476:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:30|Issue https://github.com/kubeflow/testing/issues/478:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:30|Issue https://github.com/kubeflow/testing/issues/479:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:30|Issue https://github.com/kubeflow/testing/issues/480:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:30|Issue https://github.com/kubeflow/testing/issues/482:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs an area label
	 Issues with priority in ['priority/p0', 'priority/p1'] need to be assigned to a project
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:31|Issue https://github.com/kubeflow/testing/issues/483:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:31|Issue https://github.com/kubeflow/testing/issues/489:
state:Issue needs triage:
	 Issue needs an area label
	 Issues with priority in ['priority/p0', 'priority/p1'] need to be assigned to a project
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:34|Processing shard 1|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:50:34|Issue https://github.com/kubeflow/testing/issues/491:
state:Issue needs triage:
	 Issue needs a kind label
	 Issues with priority in ['priority/p0', 'priority/p1'] need to be assigned to a project
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:36|Issue https://github.com/kubeflow/testing/issues/492:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:36|Issue https://github.com/kubeflow/testing/issues/498:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:36|Issue https://github.com/kubeflow/testing/issues/499:
state:Issue needs triage:
	 Issue needs a kind label
	 Issues with priority in ['priority/p0', 'priority/p1'] need to be assigned to a project
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:37|Issue https://github.com/kubeflow/testing/issues/501:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:39|Issue https://github.com/kubeflow/testing/issues/507:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:39|Issue https://github.com/kubeflow/testing/issues/508:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:39|Issue https://github.com/kubeflow/testing/issues/509:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:39|Issue https://github.com/kubeflow/testing/issues/510:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:39|Issue https://github.com/kubeflow/testing/issues/515:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:39|Issue https://github.com/kubeflow/testing/issues/517:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:40|Issue https://github.com/kubeflow/testing/issues/520:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:40|Issue https://github.com/kubeflow/testing/issues/524:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:40|Issue https://github.com/kubeflow/testing/issues/528:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:40|Issue https://github.com/kubeflow/testing/issues/530:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:46|kubeflow/tf-operator has a total of 65 issues|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|374|
INFO|2019-11-26T15:50:46|Processing shard 0|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:50:46|Issue: https://github.com/kubeflow/tf-operator/issues/165; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:50:48|Issue https://github.com/kubeflow/tf-operator/issues/165:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:49|Issue: https://github.com/kubeflow/tf-operator/issues/167; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:50:52|Issue https://github.com/kubeflow/tf-operator/issues/167:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:52|Issue https://github.com/kubeflow/tf-operator/issues/406:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:52|Issue: https://github.com/kubeflow/tf-operator/issues/447; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:50:53|Issue https://github.com/kubeflow/tf-operator/issues/447:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:53|Issue https://github.com/kubeflow/tf-operator/issues/609:
state:Issue needs triage:
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:54|Issue: https://github.com/kubeflow/tf-operator/issues/622; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:50:55|Issue https://github.com/kubeflow/tf-operator/issues/622:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:55|Issue: https://github.com/kubeflow/tf-operator/issues/708; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:50:56|Issue https://github.com/kubeflow/tf-operator/issues/708:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:56|Issue: https://github.com/kubeflow/tf-operator/issues/716; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:50:58|Issue https://github.com/kubeflow/tf-operator/issues/716:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:50:59|Issue: https://github.com/kubeflow/tf-operator/issues/756; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:51:01|Issue https://github.com/kubeflow/tf-operator/issues/756:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:01|Issue https://github.com/kubeflow/tf-operator/issues/757:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:03|Issue https://github.com/kubeflow/tf-operator/issues/804:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:03|Issue https://github.com/kubeflow/tf-operator/issues/810:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:03|Issue https://github.com/kubeflow/tf-operator/issues/864:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:05|Issue https://github.com/kubeflow/tf-operator/issues/888:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:05|Issue https://github.com/kubeflow/tf-operator/issues/900:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:06|Issue https://github.com/kubeflow/tf-operator/issues/902:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:06|Issue: https://github.com/kubeflow/tf-operator/issues/916; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:51:09|Issue https://github.com/kubeflow/tf-operator/issues/916:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:10|Issue https://github.com/kubeflow/tf-operator/issues/923:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:10|Issue https://github.com/kubeflow/tf-operator/issues/925:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:10|Issue https://github.com/kubeflow/tf-operator/issues/953:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:12|Issue: https://github.com/kubeflow/tf-operator/issues/960; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:51:13|Issue https://github.com/kubeflow/tf-operator/issues/960:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:13|Issue https://github.com/kubeflow/tf-operator/issues/964:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:15|Issue: https://github.com/kubeflow/tf-operator/issues/965; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:51:17|Issue https://github.com/kubeflow/tf-operator/issues/965:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:17|Issue: https://github.com/kubeflow/tf-operator/issues/968; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:51:18|Issue https://github.com/kubeflow/tf-operator/issues/968:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:18|Issue https://github.com/kubeflow/tf-operator/issues/975:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:18|Issue https://github.com/kubeflow/tf-operator/issues/976:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:18|Issue https://github.com/kubeflow/tf-operator/issues/980:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:20|Issue https://github.com/kubeflow/tf-operator/issues/985:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:20|Issue https://github.com/kubeflow/tf-operator/issues/996:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:20|Issue https://github.com/kubeflow/tf-operator/issues/999:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:21|Issue: https://github.com/kubeflow/tf-operator/issues/1016; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:51:23|Issue https://github.com/kubeflow/tf-operator/issues/1016:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:23|Issue https://github.com/kubeflow/tf-operator/issues/1019:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:23|Issue https://github.com/kubeflow/tf-operator/issues/1024:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:25|Issue https://github.com/kubeflow/tf-operator/issues/1026:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:25|Issue https://github.com/kubeflow/tf-operator/issues/1029:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:25|Issue https://github.com/kubeflow/tf-operator/issues/1030:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:26|Issue https://github.com/kubeflow/tf-operator/issues/1031:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:26|Issue https://github.com/kubeflow/tf-operator/issues/1033:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:28|Issue https://github.com/kubeflow/tf-operator/issues/1035:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:28|Issue https://github.com/kubeflow/tf-operator/issues/1039:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:28|Issue: https://github.com/kubeflow/tf-operator/issues/1045; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:51:29|Issue https://github.com/kubeflow/tf-operator/issues/1045:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:29|Issue https://github.com/kubeflow/tf-operator/issues/1048:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:31|Issue https://github.com/kubeflow/tf-operator/issues/1053:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:31|Issue https://github.com/kubeflow/tf-operator/issues/1056:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:31|Issue https://github.com/kubeflow/tf-operator/issues/1057:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:31|Issue https://github.com/kubeflow/tf-operator/issues/1058:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:31|Issue https://github.com/kubeflow/tf-operator/issues/1059:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:32|Issue https://github.com/kubeflow/tf-operator/issues/1060:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:32|Issue https://github.com/kubeflow/tf-operator/issues/1065:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:33|Issue https://github.com/kubeflow/tf-operator/issues/1066:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:33|Issue https://github.com/kubeflow/tf-operator/issues/1068:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:33|Issue https://github.com/kubeflow/tf-operator/issues/1076:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:34|Issue https://github.com/kubeflow/tf-operator/issues/1077:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:34|Issue https://github.com/kubeflow/tf-operator/issues/1078:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:34|Issue https://github.com/kubeflow/tf-operator/issues/1079:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:36|Issue https://github.com/kubeflow/tf-operator/issues/1086:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:36|Issue https://github.com/kubeflow/tf-operator/issues/1087:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:36|Issue https://github.com/kubeflow/tf-operator/issues/1090:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:36|Issue https://github.com/kubeflow/tf-operator/issues/1091:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:37|Issue https://github.com/kubeflow/tf-operator/issues/1093:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:37|Issue https://github.com/kubeflow/tf-operator/issues/1094:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:37|Issue https://github.com/kubeflow/tf-operator/issues/1095:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:37|Issue https://github.com/kubeflow/tf-operator/issues/1096:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:37|Issue https://github.com/kubeflow/tf-operator/issues/1099:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:37|Issue https://github.com/kubeflow/tf-operator/issues/1101:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:44|kubeflow/website has a total of 339 issues|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|374|
INFO|2019-11-26T15:51:44|Processing shard 0|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:51:44|Issue https://github.com/kubeflow/website/issues/18:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:46|Issue: https://github.com/kubeflow/website/issues/32; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:51:47|Issue https://github.com/kubeflow/website/issues/32:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:47|Issue https://github.com/kubeflow/website/issues/33:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:49|Issue https://github.com/kubeflow/website/issues/73:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:51|Issue https://github.com/kubeflow/website/issues/75:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:53|Issue https://github.com/kubeflow/website/issues/210:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:54|Issue https://github.com/kubeflow/website/issues/260:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:54|Issue https://github.com/kubeflow/website/issues/262:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:54|Issue https://github.com/kubeflow/website/issues/318:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:56|Issue https://github.com/kubeflow/website/issues/379:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:56|Issue https://github.com/kubeflow/website/issues/418:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:56|Issue https://github.com/kubeflow/website/issues/450:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs an area label
	 Issues with priority in ['priority/p0', 'priority/p1'] need to be assigned to a project
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:58|Issue https://github.com/kubeflow/website/issues/455:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:58|Issue https://github.com/kubeflow/website/issues/477:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:51:58|Issue https://github.com/kubeflow/website/issues/532:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:00|Issue https://github.com/kubeflow/website/issues/546:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:00|Issue https://github.com/kubeflow/website/issues/560:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:01|Issue https://github.com/kubeflow/website/issues/572:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:01|Issue https://github.com/kubeflow/website/issues/573:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:04|Issue https://github.com/kubeflow/website/issues/574:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:04|Issue https://github.com/kubeflow/website/issues/577:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:04|Issue https://github.com/kubeflow/website/issues/579:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:04|Issue https://github.com/kubeflow/website/issues/580:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:04|Issue https://github.com/kubeflow/website/issues/617:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:04|Issue: https://github.com/kubeflow/website/issues/623; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:52:05|Issue https://github.com/kubeflow/website/issues/623:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:07|Issue https://github.com/kubeflow/website/issues/653:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:07|Issue https://github.com/kubeflow/website/issues/679:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:07|Issue https://github.com/kubeflow/website/issues/680:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:07|Issue https://github.com/kubeflow/website/issues/690:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:07|Issue https://github.com/kubeflow/website/issues/706:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:07|Issue https://github.com/kubeflow/website/issues/708:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:07|Issue https://github.com/kubeflow/website/issues/723:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:07|Issue https://github.com/kubeflow/website/issues/724:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:07|Issue https://github.com/kubeflow/website/issues/734:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:08|Issue https://github.com/kubeflow/website/issues/737:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:10|Issue https://github.com/kubeflow/website/issues/746:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:12|Issue https://github.com/kubeflow/website/issues/751:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:12|Issue https://github.com/kubeflow/website/issues/754:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:14|Issue https://github.com/kubeflow/website/issues/757:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:14|Issue https://github.com/kubeflow/website/issues/758:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:14|Issue https://github.com/kubeflow/website/issues/761:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:14|Issue https://github.com/kubeflow/website/issues/785:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:14|Issue https://github.com/kubeflow/website/issues/793:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:14|Issue https://github.com/kubeflow/website/issues/795:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:14|Issue https://github.com/kubeflow/website/issues/797:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:14|Issue https://github.com/kubeflow/website/issues/799:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:14|Issue https://github.com/kubeflow/website/issues/802:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:16|Issue https://github.com/kubeflow/website/issues/804:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:16|Issue https://github.com/kubeflow/website/issues/806:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:16|Issue https://github.com/kubeflow/website/issues/808:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:16|Issue https://github.com/kubeflow/website/issues/809:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:16|Issue https://github.com/kubeflow/website/issues/810:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:16|Issue https://github.com/kubeflow/website/issues/812:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:18|Issue: https://github.com/kubeflow/website/issues/814; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:52:19|Issue https://github.com/kubeflow/website/issues/814:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:19|Issue https://github.com/kubeflow/website/issues/817:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:21|Issue https://github.com/kubeflow/website/issues/818:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:21|Issue https://github.com/kubeflow/website/issues/819:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:23|Issue https://github.com/kubeflow/website/issues/822:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:24|Issue https://github.com/kubeflow/website/issues/823:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:24|Issue https://github.com/kubeflow/website/issues/824:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:26|Issue https://github.com/kubeflow/website/issues/825:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:26|Issue https://github.com/kubeflow/website/issues/826:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:28|Issue https://github.com/kubeflow/website/issues/830:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:28|Issue https://github.com/kubeflow/website/issues/832:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:30|Issue https://github.com/kubeflow/website/issues/834:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:32|Issue https://github.com/kubeflow/website/issues/835:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:32|Issue https://github.com/kubeflow/website/issues/836:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:34|Issue https://github.com/kubeflow/website/issues/838:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:34|Issue https://github.com/kubeflow/website/issues/840:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:34|Issue https://github.com/kubeflow/website/issues/841:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:35|Issue https://github.com/kubeflow/website/issues/842:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:35|Issue https://github.com/kubeflow/website/issues/843:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:35|Issue: https://github.com/kubeflow/website/issues/844; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:52:39|Issue https://github.com/kubeflow/website/issues/844:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:39|Issue https://github.com/kubeflow/website/issues/845:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:39|Issue https://github.com/kubeflow/website/issues/847:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:39|Issue https://github.com/kubeflow/website/issues/849:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:39|Issue https://github.com/kubeflow/website/issues/850:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:41|Issue https://github.com/kubeflow/website/issues/851:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:43|Issue https://github.com/kubeflow/website/issues/852:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:43|Issue https://github.com/kubeflow/website/issues/853:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:45|Issue https://github.com/kubeflow/website/issues/855:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:45|Issue https://github.com/kubeflow/website/issues/856:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:47|Issue https://github.com/kubeflow/website/issues/858:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:47|Issue https://github.com/kubeflow/website/issues/859:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:49|Issue https://github.com/kubeflow/website/issues/860:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:49|Issue https://github.com/kubeflow/website/issues/862:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:49|Issue https://github.com/kubeflow/website/issues/863:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:49|Issue: https://github.com/kubeflow/website/issues/864; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:52:50|Issue https://github.com/kubeflow/website/issues/864:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:50|Issue https://github.com/kubeflow/website/issues/865:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:50|Issue https://github.com/kubeflow/website/issues/866:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:52|Issue: https://github.com/kubeflow/website/issues/867; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:52:53|Issue https://github.com/kubeflow/website/issues/867:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:53|Issue https://github.com/kubeflow/website/issues/868:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:54|Issue https://github.com/kubeflow/website/issues/869:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:54|Issue https://github.com/kubeflow/website/issues/870:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:54|Issue https://github.com/kubeflow/website/issues/871:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:54|Issue https://github.com/kubeflow/website/issues/873:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:54|Issue https://github.com/kubeflow/website/issues/875:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:54|Issue https://github.com/kubeflow/website/issues/876:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:55|Issue https://github.com/kubeflow/website/issues/877:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:52:57|Issue https://github.com/kubeflow/website/issues/878:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:03|Processing shard 1|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:53:03|Issue https://github.com/kubeflow/website/issues/879:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:03|Issue https://github.com/kubeflow/website/issues/880:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:05|Issue https://github.com/kubeflow/website/issues/881:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:05|Issue https://github.com/kubeflow/website/issues/886:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:07|Issue https://github.com/kubeflow/website/issues/889:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:08|Issue https://github.com/kubeflow/website/issues/891:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:08|Issue https://github.com/kubeflow/website/issues/894:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:10|Issue https://github.com/kubeflow/website/issues/899:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:10|Issue https://github.com/kubeflow/website/issues/900:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:10|Issue https://github.com/kubeflow/website/issues/901:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:10|Issue https://github.com/kubeflow/website/issues/904:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:10|Issue https://github.com/kubeflow/website/issues/905:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:10|Issue https://github.com/kubeflow/website/issues/910:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:10|Issue https://github.com/kubeflow/website/issues/912:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:10|Issue https://github.com/kubeflow/website/issues/929:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:10|Issue https://github.com/kubeflow/website/issues/930:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:12|Issue https://github.com/kubeflow/website/issues/931:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:13|Issue https://github.com/kubeflow/website/issues/932:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:13|Issue https://github.com/kubeflow/website/issues/935:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:13|Issue https://github.com/kubeflow/website/issues/940:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:13|Issue https://github.com/kubeflow/website/issues/943:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:13|Issue: https://github.com/kubeflow/website/issues/946; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:53:14|Issue https://github.com/kubeflow/website/issues/946:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:14|Issue https://github.com/kubeflow/website/issues/948:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:16|Issue https://github.com/kubeflow/website/issues/949:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:16|Issue https://github.com/kubeflow/website/issues/950:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:18|Issue https://github.com/kubeflow/website/issues/952:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:18|Issue https://github.com/kubeflow/website/issues/953:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:18|Issue https://github.com/kubeflow/website/issues/958:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:18|Issue https://github.com/kubeflow/website/issues/959:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:19|Issue https://github.com/kubeflow/website/issues/960:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:19|Issue https://github.com/kubeflow/website/issues/963:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:19|Issue https://github.com/kubeflow/website/issues/964:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:21|Issue https://github.com/kubeflow/website/issues/966:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:21|Issue https://github.com/kubeflow/website/issues/968:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:21|Issue https://github.com/kubeflow/website/issues/969:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:21|Issue https://github.com/kubeflow/website/issues/973:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:21|Issue https://github.com/kubeflow/website/issues/974:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:23|Issue https://github.com/kubeflow/website/issues/976:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:23|Issue https://github.com/kubeflow/website/issues/978:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:23|Issue https://github.com/kubeflow/website/issues/982:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:23|Issue https://github.com/kubeflow/website/issues/983:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:23|Issue https://github.com/kubeflow/website/issues/986:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:23|Issue https://github.com/kubeflow/website/issues/989:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:23|Issue https://github.com/kubeflow/website/issues/990:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:23|Issue https://github.com/kubeflow/website/issues/991:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:23|Issue https://github.com/kubeflow/website/issues/992:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:23|Issue https://github.com/kubeflow/website/issues/993:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:23|Issue https://github.com/kubeflow/website/issues/994:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:25|Issue https://github.com/kubeflow/website/issues/995:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:25|Issue https://github.com/kubeflow/website/issues/996:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:27|Issue https://github.com/kubeflow/website/issues/997:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:29|Issue https://github.com/kubeflow/website/issues/998:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:29|Issue https://github.com/kubeflow/website/issues/1000:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:29|Issue https://github.com/kubeflow/website/issues/1002:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:29|Issue https://github.com/kubeflow/website/issues/1010:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:29|Issue https://github.com/kubeflow/website/issues/1012:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:29|Issue https://github.com/kubeflow/website/issues/1013:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:29|Issue https://github.com/kubeflow/website/issues/1017:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:29|Issue https://github.com/kubeflow/website/issues/1019:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:31|Issue https://github.com/kubeflow/website/issues/1020:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:31|Issue https://github.com/kubeflow/website/issues/1023:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:31|Issue https://github.com/kubeflow/website/issues/1024:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:31|Issue https://github.com/kubeflow/website/issues/1033:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:33|Issue https://github.com/kubeflow/website/issues/1034:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:33|Issue https://github.com/kubeflow/website/issues/1036:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:33|Issue https://github.com/kubeflow/website/issues/1037:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:33|Issue https://github.com/kubeflow/website/issues/1041:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:33|Issue https://github.com/kubeflow/website/issues/1042:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:33|Issue https://github.com/kubeflow/website/issues/1043:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:33|Issue https://github.com/kubeflow/website/issues/1045:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:33|Issue https://github.com/kubeflow/website/issues/1046:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:33|Issue https://github.com/kubeflow/website/issues/1048:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:34|Issue https://github.com/kubeflow/website/issues/1050:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:34|Issue https://github.com/kubeflow/website/issues/1053:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:34|Issue https://github.com/kubeflow/website/issues/1059:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:34|Issue https://github.com/kubeflow/website/issues/1062:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:34|Issue https://github.com/kubeflow/website/issues/1063:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:34|Issue https://github.com/kubeflow/website/issues/1065:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:34|Issue https://github.com/kubeflow/website/issues/1066:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:34|Issue https://github.com/kubeflow/website/issues/1068:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:34|Issue https://github.com/kubeflow/website/issues/1069:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:34|Issue https://github.com/kubeflow/website/issues/1070:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:34|Issue https://github.com/kubeflow/website/issues/1081:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:37|Issue https://github.com/kubeflow/website/issues/1082:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:37|Issue https://github.com/kubeflow/website/issues/1084:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:37|Issue https://github.com/kubeflow/website/issues/1089:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:37|Issue https://github.com/kubeflow/website/issues/1091:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:37|Issue https://github.com/kubeflow/website/issues/1092:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:37|Issue https://github.com/kubeflow/website/issues/1094:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:39|Issue https://github.com/kubeflow/website/issues/1097:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:41|Issue: https://github.com/kubeflow/website/issues/1099; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:53:42|Issue https://github.com/kubeflow/website/issues/1099:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:42|Issue https://github.com/kubeflow/website/issues/1102:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:42|Issue https://github.com/kubeflow/website/issues/1107:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:42|Issue https://github.com/kubeflow/website/issues/1109:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:42|Issue https://github.com/kubeflow/website/issues/1110:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:42|Issue https://github.com/kubeflow/website/issues/1113:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:44|Issue https://github.com/kubeflow/website/issues/1115:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:44|Issue https://github.com/kubeflow/website/issues/1116:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:44|Issue https://github.com/kubeflow/website/issues/1117:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:44|Issue https://github.com/kubeflow/website/issues/1118:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:48|Processing shard 2|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:53:48|Issue https://github.com/kubeflow/website/issues/1121:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:48|Issue https://github.com/kubeflow/website/issues/1123:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:50|Issue https://github.com/kubeflow/website/issues/1124:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:51|Issue https://github.com/kubeflow/website/issues/1125:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:51|Issue https://github.com/kubeflow/website/issues/1126:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:53|Issue https://github.com/kubeflow/website/issues/1127:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:55|Issue https://github.com/kubeflow/website/issues/1128:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:57|Issue https://github.com/kubeflow/website/issues/1129:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:53:59|Issue https://github.com/kubeflow/website/issues/1130:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:01|Issue https://github.com/kubeflow/website/issues/1131:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:02|Issue https://github.com/kubeflow/website/issues/1137:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:02|Issue https://github.com/kubeflow/website/issues/1138:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:02|Issue https://github.com/kubeflow/website/issues/1139:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:02|Issue https://github.com/kubeflow/website/issues/1140:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:02|Issue https://github.com/kubeflow/website/issues/1142:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:02|Issue https://github.com/kubeflow/website/issues/1143:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:02|Issue https://github.com/kubeflow/website/issues/1146:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:02|Issue https://github.com/kubeflow/website/issues/1147:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:02|Issue https://github.com/kubeflow/website/issues/1149:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:02|Issue https://github.com/kubeflow/website/issues/1153:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:02|Issue https://github.com/kubeflow/website/issues/1159:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:02|Issue https://github.com/kubeflow/website/issues/1160:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:02|Issue https://github.com/kubeflow/website/issues/1163:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:04|Issue https://github.com/kubeflow/website/issues/1165:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:04|Issue https://github.com/kubeflow/website/issues/1166:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:06|Issue https://github.com/kubeflow/website/issues/1167:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:06|Issue https://github.com/kubeflow/website/issues/1171:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:06|Issue https://github.com/kubeflow/website/issues/1175:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:06|Issue https://github.com/kubeflow/website/issues/1181:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:07|Issue https://github.com/kubeflow/website/issues/1183:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:07|Issue https://github.com/kubeflow/website/issues/1184:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:07|Issue https://github.com/kubeflow/website/issues/1186:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:07|Issue https://github.com/kubeflow/website/issues/1187:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:09|Issue https://github.com/kubeflow/website/issues/1196:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:09|Issue https://github.com/kubeflow/website/issues/1200:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:11|Issue https://github.com/kubeflow/website/issues/1201:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:12|Issue https://github.com/kubeflow/website/issues/1202:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:14|Issue https://github.com/kubeflow/website/issues/1203:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:16|Issue https://github.com/kubeflow/website/issues/1204:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:17|Issue https://github.com/kubeflow/website/issues/1205:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:19|Issue https://github.com/kubeflow/website/issues/1206:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:20|Issue https://github.com/kubeflow/website/issues/1207:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:22|Issue https://github.com/kubeflow/website/issues/1208:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:24|Issue https://github.com/kubeflow/website/issues/1209:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:24|Issue https://github.com/kubeflow/website/issues/1210:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:24|Issue https://github.com/kubeflow/website/issues/1211:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:26|Issue https://github.com/kubeflow/website/issues/1212:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:26|Issue https://github.com/kubeflow/website/issues/1213:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:26|Issue https://github.com/kubeflow/website/issues/1215:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:26|Issue https://github.com/kubeflow/website/issues/1216:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:27|Issue https://github.com/kubeflow/website/issues/1217:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:29|Issue https://github.com/kubeflow/website/issues/1218:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:29|Issue https://github.com/kubeflow/website/issues/1221:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:30|Issue https://github.com/kubeflow/website/issues/1222:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:30|Issue https://github.com/kubeflow/website/issues/1223:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:32|Issue https://github.com/kubeflow/website/issues/1224:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:32|Issue https://github.com/kubeflow/website/issues/1225:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:32|Issue https://github.com/kubeflow/website/issues/1226:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:32|Issue: https://github.com/kubeflow/website/issues/1233; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:54:33|Issue https://github.com/kubeflow/website/issues/1233:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:33|Issue https://github.com/kubeflow/website/issues/1235:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:35|Issue https://github.com/kubeflow/website/issues/1236:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:37|Issue https://github.com/kubeflow/website/issues/1238:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:37|Issue https://github.com/kubeflow/website/issues/1239:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:38|Issue https://github.com/kubeflow/website/issues/1243:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:38|Issue https://github.com/kubeflow/website/issues/1246:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:38|Issue https://github.com/kubeflow/website/issues/1247:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:40|Issue https://github.com/kubeflow/website/issues/1248:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:40|Issue https://github.com/kubeflow/website/issues/1249:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:42|Issue https://github.com/kubeflow/website/issues/1252:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:42|Issue https://github.com/kubeflow/website/issues/1253:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:44|Issue https://github.com/kubeflow/website/issues/1257:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:45|Issue https://github.com/kubeflow/website/issues/1258:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:45|Issue https://github.com/kubeflow/website/issues/1259:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:47|Issue https://github.com/kubeflow/website/issues/1261:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:47|Issue https://github.com/kubeflow/website/issues/1263:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:49|Issue https://github.com/kubeflow/website/issues/1267:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:49|Issue https://github.com/kubeflow/website/issues/1268:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:50|Issue https://github.com/kubeflow/website/issues/1272:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:50|Issue https://github.com/kubeflow/website/issues/1273:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:50|Issue https://github.com/kubeflow/website/issues/1279:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:50|Issue https://github.com/kubeflow/website/issues/1280:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:52|Issue https://github.com/kubeflow/website/issues/1281:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:52|Issue https://github.com/kubeflow/website/issues/1283:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:52|Issue https://github.com/kubeflow/website/issues/1288:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:52|Issue https://github.com/kubeflow/website/issues/1290:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:52|Issue https://github.com/kubeflow/website/issues/1292:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:52|Issue https://github.com/kubeflow/website/issues/1293:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:54|Issue https://github.com/kubeflow/website/issues/1295:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:54|Issue https://github.com/kubeflow/website/issues/1296:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:54|Issue https://github.com/kubeflow/website/issues/1302:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:54|Issue https://github.com/kubeflow/website/issues/1309:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:54|Issue https://github.com/kubeflow/website/issues/1311:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:54|Issue https://github.com/kubeflow/website/issues/1312:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:54|Issue https://github.com/kubeflow/website/issues/1313:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:54|Issue https://github.com/kubeflow/website/issues/1315:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:54|Issue https://github.com/kubeflow/website/issues/1316:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:54|Issue https://github.com/kubeflow/website/issues/1317:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:56|Issue https://github.com/kubeflow/website/issues/1323:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:58|Issue https://github.com/kubeflow/website/issues/1324:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:58|Issue https://github.com/kubeflow/website/issues/1328:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:59|Processing shard 3|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|539|
INFO|2019-11-26T15:54:59|Issue https://github.com/kubeflow/website/issues/1329:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:54:59|Issue: https://github.com/kubeflow/website/issues/1331; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:55:01|Issue https://github.com/kubeflow/website/issues/1331:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:01|Issue: https://github.com/kubeflow/website/issues/1332; fetching all timeline items|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2019-11-26T15:55:02|Issue https://github.com/kubeflow/website/issues/1332:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:02|Issue https://github.com/kubeflow/website/issues/1333:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:02|Issue https://github.com/kubeflow/website/issues/1337:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:02|Issue https://github.com/kubeflow/website/issues/1338:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1341:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1342:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1343:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1344:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1345:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1346:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1347:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1348:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1349:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1351:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1352:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1353:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1355:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1357:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1360:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1361:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1365:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1366:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1367:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1370:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1371:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1372:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1373:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1374:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1375:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1381:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1382:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1386:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1387:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1391:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1396:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1400:
state:Issue doesn't need attention.
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2019-11-26T15:55:03|Issue https://github.com/kubeflow/website/issues/1412:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|

Update Needs Triage Kanban Board

  • The code below processes all issues in the needs triage kanban board and removes issues that have already been triaged

In [ ]:
importlib.reload(triage)
triager = triage.IssueTriage()
triager.update_kanban_board()


WARNING|2020-04-20T13:40:44|GraphQLClient is defaulting to FixedAccessTokenGenerator based on environment variables. This is deprecated. Caller should explicitly pass in a instance via header_generator. Traceback:
<function extract_stack at 0x7efdb3e8c6a8>|/home/jovyan/git_kubeflow-code-intelligence/py/code_intelligence/graphql.py|30|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/website/issues/1911:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/website/issues/1911 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4968:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4968 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4966:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4966 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/manifests/issues/1117:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/manifests/issues/1117 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4945:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4945 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kfctl/issues/303:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kfctl/issues/303 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4943:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4943 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/website/issues/1885:
state:Issue needs triage:
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/website/issues/1885 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4930:
state:Issue needs triage:
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4930 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/website/issues/1873:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/website/issues/1873 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/manifests/issues/1078:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/manifests/issues/1078 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/website/issues/1862:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/website/issues/1862 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4914:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4914 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/website/issues/1858:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/website/issues/1858 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4901:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4901 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/website/issues/1849:
state:Issue needs triage:
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/website/issues/1849 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/examples/issues/780:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/examples/issues/780 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4894:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4894 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/examples/issues/778:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/examples/issues/778 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4893:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4893 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4891:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4891 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4890:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4890 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4884:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4884 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/examples/issues/776:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/examples/issues/776 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/website/issues/1833:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/website/issues/1833 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kfctl/issues/284:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kfctl/issues/284 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/website/issues/1828:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/website/issues/1828 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/examples/issues/775:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/examples/issues/775 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/manifests/issues/1022:
state:Issue needs triage:
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/manifests/issues/1022 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/manifests/issues/1008:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/manifests/issues/1008 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/manifests/issues/1006:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/manifests/issues/1006 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/manifests/issues/1005:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/manifests/issues/1005 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/manifests/issues/1004:
state:Issue needs triage:
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/manifests/issues/1004 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kfctl/issues/278:
state:Issue needs triage:
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kfctl/issues/278 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4845:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4845 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4844:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4844 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/manifests/issues/991:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/manifests/issues/991 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kfctl/issues/274:
state:Issue needs triage:
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kfctl/issues/274 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4839:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4839 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4837:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4837 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4836:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/kubeflow/issues/4836 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/examples/issues/765:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:49|Issue https://github.com/kubeflow/examples/issues/765 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:49|Issue: https://github.com/kubeflow/kubeflow/issues/4835; fetching all timeline items|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2020-04-20T13:40:50|Issue https://github.com/kubeflow/kubeflow/issues/4835:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:50|Issue https://github.com/kubeflow/kubeflow/issues/4835 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:50|Issue https://github.com/kubeflow/website/issues/1772:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:50|Issue https://github.com/kubeflow/website/issues/1772 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:50|Issue https://github.com/kubeflow/kubeflow/issues/4830:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:50|Issue https://github.com/kubeflow/kubeflow/issues/4830 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:50|Issue: https://github.com/kubeflow/kubeflow/issues/4827; fetching all timeline items|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4827:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4827 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4826:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4826 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4823:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4823 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4822:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4822 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4821:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4821 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kfctl/issues/265:
state:Issue needs triage:
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kfctl/issues/265 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4820:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4820 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4819:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4819 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/manifests/issues/975:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/manifests/issues/975 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4813:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4813 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4811:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4811 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/manifests/issues/968:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/manifests/issues/968 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kfctl/issues/262:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kfctl/issues/262 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4807:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4807 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4806:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4806 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/examples/issues/761:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/examples/issues/761 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/website/issues/1756:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/website/issues/1756 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4802:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4802 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/examples/issues/754:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/examples/issues/754 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/website/issues/1738:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/website/issues/1738 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kfctl/issues/253:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kfctl/issues/253 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/kubeflow/issues/4770:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/testing/issues/605:
state:Issue needs triage:
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/testing/issues/605 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/website/issues/1643:
state:Issue needs triage:
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/website/issues/1643 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:51|Issue https://github.com/kubeflow/website/issues/1626:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:51|Issue: https://github.com/kubeflow/website/issues/1611; fetching all timeline items|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2020-04-20T13:40:52|Issue https://github.com/kubeflow/website/issues/1611:
state:Issue needs triage:
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:52|Issue https://github.com/kubeflow/website/issues/1611 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:52|Issue https://github.com/kubeflow/website/issues/1598:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:52|Issue https://github.com/kubeflow/website/issues/1593:
state:Issue needs triage:
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:52|Issue https://github.com/kubeflow/website/issues/1593 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:52|Issue https://github.com/kubeflow/manifests/issues/797:
state:Issue needs triage:
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:52|Issue https://github.com/kubeflow/manifests/issues/797 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:52|Issue https://github.com/kubeflow/website/issues/1534:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:52|Issue https://github.com/kubeflow/website/issues/1534 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:40:53|Issue https://github.com/kubeflow/testing/issues/554:
state:Issue needs triage:
	 Issue needs a kind label
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:53|Issue https://github.com/kubeflow/testing/issues/554 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:53|Issue https://github.com/kubeflow/website/issues/1505:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:53|Issue https://github.com/kubeflow/website/issues/1505 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:40:53|Issue https://github.com/kubeflow/kfctl/issues/158:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:53|Issue https://github.com/kubeflow/kfctl/issues/158 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:40:53|Issue https://github.com/kubeflow/kfctl/issues/138:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:53|Issue https://github.com/kubeflow/kfctl/issues/138 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:40:54|Issue: https://github.com/kubeflow/website/issues/1435; fetching all timeline items|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2020-04-20T13:40:55|Issue https://github.com/kubeflow/website/issues/1435:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:55|Issue https://github.com/kubeflow/website/issues/1435 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:40:55|Issue https://github.com/kubeflow/code-intelligence/issues/63:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:55|Issue https://github.com/kubeflow/code-intelligence/issues/63 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:40:56|Issue https://github.com/kubeflow/tf-operator/issues/1101:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:56|Issue https://github.com/kubeflow/tf-operator/issues/1101 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:40:57|Issue https://github.com/kubeflow/kfserving/issues/567:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:57|Issue https://github.com/kubeflow/kfserving/issues/567 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:40:57|Issue https://github.com/kubeflow/fairing/issues/425:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:57|Issue https://github.com/kubeflow/fairing/issues/425 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:40:58|Issue: https://github.com/kubeflow/examples/issues/681; fetching all timeline items|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2020-04-20T13:40:59|Issue https://github.com/kubeflow/examples/issues/681:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:59|Issue https://github.com/kubeflow/examples/issues/681 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:40:59|Issue https://github.com/kubeflow/kfserving/issues/564:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:40:59|Issue https://github.com/kubeflow/kfserving/issues/564 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:00|Issue https://github.com/kubeflow/kfserving/issues/562:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:00|Issue https://github.com/kubeflow/kfserving/issues/562 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:01|Issue https://github.com/kubeflow/metadata/issues/166:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:01|Issue https://github.com/kubeflow/metadata/issues/166 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:02|Issue: https://github.com/kubeflow/kfserving/issues/546; fetching all timeline items|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2020-04-20T13:41:03|Issue https://github.com/kubeflow/kfserving/issues/546:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:03|Issue https://github.com/kubeflow/kfserving/issues/546 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:04|Issue https://github.com/kubeflow/fairing/issues/417:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:04|Issue https://github.com/kubeflow/fairing/issues/417 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:04|Issue https://github.com/kubeflow/kfserving/issues/539:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:04|Issue https://github.com/kubeflow/kfserving/issues/539 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:05|Issue https://github.com/kubeflow/kfserving/issues/533:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:05|Issue https://github.com/kubeflow/kfserving/issues/533 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:06|Issue https://github.com/kubeflow/metadata/issues/154:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:06|Issue https://github.com/kubeflow/metadata/issues/154 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:07|Issue https://github.com/kubeflow/kfserving/issues/505:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:07|Issue https://github.com/kubeflow/kfserving/issues/505 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:07|Issue https://github.com/kubeflow/kfserving/issues/504:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:07|Issue https://github.com/kubeflow/kfserving/issues/504 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:08|Issue https://github.com/kubeflow/fairing/issues/408:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:08|Issue https://github.com/kubeflow/fairing/issues/408 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:09|Issue https://github.com/kubeflow/metadata/issues/149:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:09|Issue https://github.com/kubeflow/metadata/issues/149 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:09|Issue https://github.com/kubeflow/kfserving/issues/499:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:09|Issue https://github.com/kubeflow/kfserving/issues/499 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:10|Issue https://github.com/kubeflow/metadata/issues/146:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:10|Issue https://github.com/kubeflow/metadata/issues/146 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:11|Issue https://github.com/kubeflow/metadata/issues/145:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:11|Issue https://github.com/kubeflow/metadata/issues/145 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:19|Issue https://github.com/kubeflow/manifests/issues/425:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:19|Issue https://github.com/kubeflow/manifests/issues/425 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:19|Issue https://github.com/kubeflow/kfserving/issues/386:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:19|Issue https://github.com/kubeflow/kfserving/issues/386 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:20|Issue https://github.com/kubeflow/kfserving/issues/384:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:20|Issue https://github.com/kubeflow/kfserving/issues/384 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:21|Issue https://github.com/kubeflow/kfserving/issues/376:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:21|Issue https://github.com/kubeflow/kfserving/issues/376 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:22|Issue https://github.com/kubeflow/kfserving/issues/374:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:22|Issue https://github.com/kubeflow/kfserving/issues/374 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:22|Issue https://github.com/kubeflow/kfserving/issues/371:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:22|Issue https://github.com/kubeflow/kfserving/issues/371 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:23|Issue https://github.com/kubeflow/kfserving/issues/369:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:23|Issue https://github.com/kubeflow/kfserving/issues/369 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:24|Issue https://github.com/kubeflow/kfserving/issues/366:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:24|Issue https://github.com/kubeflow/kfserving/issues/366 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:24|Issue https://github.com/kubeflow/fairing/issues/381:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:24|Issue https://github.com/kubeflow/fairing/issues/381 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:25|Issue: https://github.com/kubeflow/fairing/issues/380; fetching all timeline items|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2020-04-20T13:41:26|Issue https://github.com/kubeflow/fairing/issues/380:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:26|Issue https://github.com/kubeflow/fairing/issues/380 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:26|Issue https://github.com/kubeflow/kfserving/issues/353:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:26|Issue https://github.com/kubeflow/kfserving/issues/353 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:27|Issue https://github.com/kubeflow/kfserving/issues/347:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:27|Issue https://github.com/kubeflow/kfserving/issues/347 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:28|Issue https://github.com/kubeflow/metadata/issues/128:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:28|Issue https://github.com/kubeflow/metadata/issues/128 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:28|Issue: https://github.com/kubeflow/pytorch-operator/issues/219; fetching all timeline items|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2020-04-20T13:41:29|Issue https://github.com/kubeflow/pytorch-operator/issues/219:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:29|Issue https://github.com/kubeflow/pytorch-operator/issues/219 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:30|Issue https://github.com/kubeflow/fairing/issues/369:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:30|Issue https://github.com/kubeflow/fairing/issues/369 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:30|Issue https://github.com/kubeflow/tf-operator/issues/1079:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:30|Issue https://github.com/kubeflow/tf-operator/issues/1079 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:31|Issue https://github.com/kubeflow/kfserving/issues/335:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:31|Issue https://github.com/kubeflow/kfserving/issues/335 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:32|Issue https://github.com/kubeflow/fairing/issues/366:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:32|Issue https://github.com/kubeflow/fairing/issues/366 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:32|Issue https://github.com/kubeflow/website/issues/1127:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:32|Issue https://github.com/kubeflow/website/issues/1127 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:33|Issue https://github.com/kubeflow/pytorch-operator/issues/215:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:33|Issue https://github.com/kubeflow/pytorch-operator/issues/215 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:34|Issue https://github.com/kubeflow/pytorch-operator/issues/214:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:34|Issue https://github.com/kubeflow/pytorch-operator/issues/214 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:34|Issue https://github.com/kubeflow/tf-operator/issues/1076:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:34|Issue https://github.com/kubeflow/tf-operator/issues/1076 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:35|Issue https://github.com/kubeflow/website/issues/1123:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:35|Issue https://github.com/kubeflow/website/issues/1123 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:36|Issue https://github.com/kubeflow/fairing/issues/361:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:36|Issue https://github.com/kubeflow/fairing/issues/361 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:37|Issue https://github.com/kubeflow/kfserving/issues/324:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:37|Issue https://github.com/kubeflow/kfserving/issues/324 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:38|Issue https://github.com/kubeflow/fairing/issues/360:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:38|Issue https://github.com/kubeflow/fairing/issues/360 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:39|Issue https://github.com/kubeflow/kfserving/issues/323:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:39|Issue https://github.com/kubeflow/kfserving/issues/323 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:39|Issue: https://github.com/kubeflow/kfserving/issues/322; fetching all timeline items|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2020-04-20T13:41:40|Issue https://github.com/kubeflow/kfserving/issues/322:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:40|Issue https://github.com/kubeflow/kfserving/issues/322 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:41|Issue https://github.com/kubeflow/kfserving/issues/321:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:41|Issue https://github.com/kubeflow/kfserving/issues/321 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:41|Issue https://github.com/kubeflow/fairing/issues/357:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:41|Issue https://github.com/kubeflow/fairing/issues/357 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:42|Issue https://github.com/kubeflow/metadata/issues/119:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:42|Issue https://github.com/kubeflow/metadata/issues/119 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:43|Issue https://github.com/kubeflow/kfserving/issues/310:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:43|Issue https://github.com/kubeflow/kfserving/issues/310 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:43|Issue https://github.com/kubeflow/metadata/issues/117:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:43|Issue https://github.com/kubeflow/metadata/issues/117 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:44|Issue https://github.com/kubeflow/metadata/issues/116:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:44|Issue https://github.com/kubeflow/metadata/issues/116 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:45|Issue https://github.com/kubeflow/metadata/issues/114:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:45|Issue https://github.com/kubeflow/metadata/issues/114 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:45|Issue https://github.com/kubeflow/fairing/issues/344:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:45|Issue https://github.com/kubeflow/fairing/issues/344 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:46|Issue https://github.com/kubeflow/kfserving/issues/284:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:46|Issue https://github.com/kubeflow/kfserving/issues/284 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:47|Issue https://github.com/kubeflow/kfserving/issues/280:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:47|Issue https://github.com/kubeflow/kfserving/issues/280 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:47|Issue https://github.com/kubeflow/kfserving/issues/278:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:47|Issue https://github.com/kubeflow/kfserving/issues/278 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:48|Issue https://github.com/kubeflow/pytorch-operator/issues/203:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:48|Issue https://github.com/kubeflow/pytorch-operator/issues/203 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:49|Issue https://github.com/kubeflow/metadata/issues/108:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:49|Issue https://github.com/kubeflow/metadata/issues/108 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:49|Issue https://github.com/kubeflow/metadata/issues/107:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:49|Issue https://github.com/kubeflow/metadata/issues/107 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:50|Issue https://github.com/kubeflow/tf-operator/issues/1059:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:50|Issue https://github.com/kubeflow/tf-operator/issues/1059 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:51|Issue https://github.com/kubeflow/fairing/issues/332:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:51|Issue https://github.com/kubeflow/fairing/issues/332 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:51|Issue https://github.com/kubeflow/kfserving/issues/273:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:51|Issue https://github.com/kubeflow/kfserving/issues/273 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:52|Issue https://github.com/kubeflow/fairing/issues/329:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:52|Issue https://github.com/kubeflow/fairing/issues/329 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:53|Issue https://github.com/kubeflow/kfserving/issues/271:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:53|Issue https://github.com/kubeflow/kfserving/issues/271 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:53|Issue https://github.com/kubeflow/kfserving/issues/270:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:53|Issue https://github.com/kubeflow/kfserving/issues/270 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:54|Issue https://github.com/kubeflow/metadata/issues/105:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:54|Issue https://github.com/kubeflow/metadata/issues/105 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:55|Issue https://github.com/kubeflow/metadata/issues/102:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:55|Issue https://github.com/kubeflow/metadata/issues/102 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:55|Issue https://github.com/kubeflow/manifests/issues/233:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:55|Issue https://github.com/kubeflow/manifests/issues/233 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:41:55|Issue https://github.com/kubeflow/manifests/issues/231:
state:Issue needs triage:
	 Issue needs a kind label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:55|Issue https://github.com/kubeflow/manifests/issues/231 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:41:55|Issue https://github.com/kubeflow/pytorch-operator/issues/190:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:55|Issue https://github.com/kubeflow/pytorch-operator/issues/190 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:56|Issue https://github.com/kubeflow/fairing/issues/314:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:56|Issue https://github.com/kubeflow/fairing/issues/314 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:57|Issue https://github.com/kubeflow/metadata/issues/88:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:57|Issue https://github.com/kubeflow/metadata/issues/88 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:57|Issue https://github.com/kubeflow/kfserving/issues/226:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:57|Issue https://github.com/kubeflow/kfserving/issues/226 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:58|Issue https://github.com/kubeflow/website/issues/859:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:58|Issue https://github.com/kubeflow/website/issues/859 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:59|Issue https://github.com/kubeflow/pytorch-operator/issues/185:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:59|Issue https://github.com/kubeflow/pytorch-operator/issues/185 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:41:59|Issue https://github.com/kubeflow/website/issues/856:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:41:59|Issue https://github.com/kubeflow/website/issues/856 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:00|Issue https://github.com/kubeflow/metadata/issues/81:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:00|Issue https://github.com/kubeflow/metadata/issues/81 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:01|Issue https://github.com/kubeflow/fairing/issues/309:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:01|Issue https://github.com/kubeflow/fairing/issues/309 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:02|Issue https://github.com/kubeflow/metadata/issues/79:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:02|Issue https://github.com/kubeflow/metadata/issues/79 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:03|Issue https://github.com/kubeflow/fairing/issues/308:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:03|Issue https://github.com/kubeflow/fairing/issues/308 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:03|Issue https://github.com/kubeflow/metadata/issues/78:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:03|Issue https://github.com/kubeflow/metadata/issues/78 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:04|Issue https://github.com/kubeflow/metadata/issues/77:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:04|Issue https://github.com/kubeflow/metadata/issues/77 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:05|Issue https://github.com/kubeflow/metadata/issues/76:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:05|Issue https://github.com/kubeflow/metadata/issues/76 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:05|Issue https://github.com/kubeflow/kfserving/issues/205:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:05|Issue https://github.com/kubeflow/kfserving/issues/205 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:06|Issue https://github.com/kubeflow/metadata/issues/73:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:06|Issue https://github.com/kubeflow/metadata/issues/73 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:07|Issue https://github.com/kubeflow/fairing/issues/307:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:07|Issue https://github.com/kubeflow/fairing/issues/307 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:08|Issue: https://github.com/kubeflow/kfserving/issues/196; fetching all timeline items|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2020-04-20T13:42:08|Issue https://github.com/kubeflow/kfserving/issues/196:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:08|Issue https://github.com/kubeflow/kfserving/issues/196 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:09|Issue https://github.com/kubeflow/fairing/issues/302:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:09|Issue https://github.com/kubeflow/fairing/issues/302 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:10|Issue https://github.com/kubeflow/pytorch-operator/issues/183:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:10|Issue https://github.com/kubeflow/pytorch-operator/issues/183 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:11|Issue https://github.com/kubeflow/kfserving/issues/184:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:11|Issue https://github.com/kubeflow/kfserving/issues/184 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:11|Issue https://github.com/kubeflow/kfserving/issues/183:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:11|Issue https://github.com/kubeflow/kfserving/issues/183 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:12|Issue https://github.com/kubeflow/website/issues/836:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:12|Issue https://github.com/kubeflow/website/issues/836 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:13|Issue https://github.com/kubeflow/tf-operator/issues/1033:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:13|Issue https://github.com/kubeflow/tf-operator/issues/1033 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:14|Issue https://github.com/kubeflow/tf-operator/issues/1030:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:14|Issue https://github.com/kubeflow/tf-operator/issues/1030 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:15|Issue https://github.com/kubeflow/fairing/issues/284:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:15|Issue https://github.com/kubeflow/fairing/issues/284 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:15|Issue https://github.com/kubeflow/kfserving/issues/163:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:15|Issue https://github.com/kubeflow/kfserving/issues/163 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:16|Issue https://github.com/kubeflow/kfserving/issues/162:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:16|Issue https://github.com/kubeflow/kfserving/issues/162 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:17|Issue https://github.com/kubeflow/website/issues/802:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:17|Issue https://github.com/kubeflow/website/issues/802 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:18|Issue https://github.com/kubeflow/kfserving/issues/157:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:18|Issue https://github.com/kubeflow/kfserving/issues/157 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:19|Issue https://github.com/kubeflow/fairing/issues/273:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:19|Issue https://github.com/kubeflow/fairing/issues/273 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:19|Issue https://github.com/kubeflow/tf-operator/issues/1024:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:19|Issue https://github.com/kubeflow/tf-operator/issues/1024 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:20|Issue https://github.com/kubeflow/kfserving/issues/144:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:20|Issue https://github.com/kubeflow/kfserving/issues/144 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:21|Issue https://github.com/kubeflow/kfserving/issues/139:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:21|Issue https://github.com/kubeflow/kfserving/issues/139 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:21|Issue https://github.com/kubeflow/website/issues/755:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:21|Issue https://github.com/kubeflow/website/issues/755 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:42:21|Issue https://github.com/kubeflow/website/issues/753:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:21|Issue https://github.com/kubeflow/website/issues/753 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:42:21|Issue https://github.com/kubeflow/website/issues/750:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:21|Issue https://github.com/kubeflow/website/issues/750 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:42:21|Issue https://github.com/kubeflow/fairing/issues/265:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:21|Issue https://github.com/kubeflow/fairing/issues/265 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:22|Issue https://github.com/kubeflow/website/issues/738:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:22|Issue https://github.com/kubeflow/website/issues/738 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:42:22|Issue https://github.com/kubeflow/kfserving/issues/120:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:22|Issue https://github.com/kubeflow/kfserving/issues/120 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:23|Issue https://github.com/kubeflow/fairing/issues/254:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:23|Issue https://github.com/kubeflow/fairing/issues/254 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:24|Issue https://github.com/kubeflow/website/issues/707:
state:Issue needs triage:
	 Issue needs one of the priorities ['priority/p0', 'priority/p1', 'priority/p2', 'priority/p3']
	 Issue needs an area label
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:24|Issue https://github.com/kubeflow/website/issues/707 already in triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|751|
INFO|2020-04-20T13:42:24|Issue: https://github.com/kubeflow/tf-operator/issues/999; fetching all timeline items|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|672|
INFO|2020-04-20T13:42:24|Issue https://github.com/kubeflow/tf-operator/issues/999:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:24|Issue https://github.com/kubeflow/tf-operator/issues/999 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:25|Issue https://github.com/kubeflow/kfserving/issues/82:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:25|Issue https://github.com/kubeflow/kfserving/issues/82 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:26|Issue https://github.com/kubeflow/kfserving/issues/60:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:26|Issue https://github.com/kubeflow/kfserving/issues/60 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:26|Issue https://github.com/kubeflow/kfserving/issues/59:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:26|Issue https://github.com/kubeflow/kfserving/issues/59 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:27|Issue https://github.com/kubeflow/tf-operator/issues/980:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:27|Issue https://github.com/kubeflow/tf-operator/issues/980 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|
INFO|2020-04-20T13:42:28|Issue https://github.com/kubeflow/fairing/issues/223:
state:Issue doesn't need attention.
|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|677|
INFO|2020-04-20T13:42:28|Issue https://github.com/kubeflow/fairing/issues/223 remove from triage project|/home/jovyan/git_kubeflow-code-intelligence/py/issue_triage/triage.py|734|

Download Issues

  • The cells below use GitHub's GraphQL API to download all issues in a specified repository that have been updated since start_time
  • The downloaded issues are stored in .data; this makes it easy to rerun the processing without needing to redownload the issues

In [8]:
today = datetime.datetime.now()
today = datetime.datetime(year=today.year, month=today.month, day=today.day)

start_time = today - datetime.timedelta(weeks=24)

In [9]:
issue_filter = {
    "since": start_time.isoformat(),
}
start_time_day =  start_time.strftime("%Y%m%d")
repo = "kubeflow/kubeflow"
issues_dir = os.path.join(os.getcwd(), ".data", "issues", repo, start_time_day)

if os.path.exists(issues_dir):
    logging.info("Issues data already exists; not redownloading")
else:    
    triager = triage.IssueTriage()
    try:        
        triager.download_issues(repo, issues_dir)
    except Exception as download_error:
        raise


INFO|2019-11-04T09:49:51|kubeflow/kubeflow has a total of 1111 issues|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|378|
INFO|2019-11-04T09:49:51|initializing the shard writer|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|381|
INFO|2019-11-04T09:49:51|Wrote shard 0|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|410|
INFO|2019-11-04T09:49:58|Wrote shard 1|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|410|
INFO|2019-11-04T09:50:07|Wrote shard 2|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|410|
INFO|2019-11-04T09:50:15|Wrote shard 3|/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py|410|
---------------------------------------------------------------------------
KeyboardInterrupt                         Traceback (most recent call last)
<ipython-input-9-95c661b2409e> in <module>()
     11     triager = triage.IssueTriage()
     12     try:
---> 13         triager.download_issues(repo, issues_dir)
     14     except Exception as download_error:
     15         raise

/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py in download_issues(self, repo, output, issue_filter)
    407     for shard_index, shard in enumerate(self._iter_issues(org, repo_name,
    408                                                           output=output,
--> 409                                                           issue_filter=None)):
    410       logging.info("Wrote shard %s", shard_index)
    411 

/home/jlewi/git_kubeflow-code-intelligence/py/issue_triage/triage.py in _iter_issues(self, org, repo, issue_filter, output)
    365         "filter": issue_filter,
    366       }
--> 367       results = client.run_query(query, variables=variables)
    368 
    369       if results.get("errors"):

/home/jlewi/git_kubeflow-code-intelligence/py/code_intelligence/graphql.py in run_query(self, query, variables)
     28 
     29     request = requests.post('https://api.github.com/graphql',
---> 30                             json=payload, headers=self._headers)
     31     if request.status_code == 200:
     32       return request.json()

/usr/lib/python3/dist-packages/requests/api.py in post(url, data, json, **kwargs)
    114     """
    115 
--> 116     return request('post', url, data=data, json=json, **kwargs)
    117 
    118 

/usr/lib/python3/dist-packages/requests/api.py in request(method, url, **kwargs)
     58     # cases, and look like a memory leak in others.
     59     with sessions.Session() as session:
---> 60         return session.request(method=method, url=url, **kwargs)
     61 
     62 

/usr/lib/python3/dist-packages/requests/sessions.py in request(self, method, url, params, data, headers, cookies, files, auth, timeout, allow_redirects, proxies, hooks, stream, verify, cert, json)
    531         }
    532         send_kwargs.update(settings)
--> 533         resp = self.send(prep, **send_kwargs)
    534 
    535         return resp

/usr/lib/python3/dist-packages/requests/sessions.py in send(self, request, **kwargs)
    644 
    645         # Send the request
--> 646         r = adapter.send(request, **kwargs)
    647 
    648         # Total elapsed time of the request (approximately)

/usr/lib/python3/dist-packages/requests/adapters.py in send(self, request, stream, timeout, verify, cert, proxies)
    447                     decode_content=False,
    448                     retries=self.max_retries,
--> 449                     timeout=timeout
    450                 )
    451 

/usr/local/lib/python3.7/dist-packages/urllib3/connectionpool.py in urlopen(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, **response_kw)
    670                 body=body,
    671                 headers=headers,
--> 672                 chunked=chunked,
    673             )
    674 

/usr/local/lib/python3.7/dist-packages/urllib3/connectionpool.py in _make_request(self, conn, method, url, timeout, chunked, **httplib_request_kw)
    419                     # Python 3 (including for exceptions like SystemExit).
    420                     # Otherwise it looks like a bug in the code.
--> 421                     six.raise_from(e, None)
    422         except (SocketTimeout, BaseSSLError, SocketError) as e:
    423             self._raise_timeout(err=e, url=url, timeout_value=read_timeout)

/usr/local/lib/python3.7/dist-packages/urllib3/packages/six.py in raise_from(value, from_value)

/usr/local/lib/python3.7/dist-packages/urllib3/connectionpool.py in _make_request(self, conn, method, url, timeout, chunked, **httplib_request_kw)
    414                 # Python 3
    415                 try:
--> 416                     httplib_response = conn.getresponse()
    417                 except BaseException as e:
    418                     # Remove the TypeError from the exception chain in

/usr/lib/python3.7/http/client.py in getresponse(self)
   1319         try:
   1320             try:
-> 1321                 response.begin()
   1322             except ConnectionError:
   1323                 self.close()

/usr/lib/python3.7/http/client.py in begin(self)
    294         # read until we get a non-100 response
    295         while True:
--> 296             version, status, reason = self._read_status()
    297             if status != CONTINUE:
    298                 break

/usr/lib/python3.7/http/client.py in _read_status(self)
    255 
    256     def _read_status(self):
--> 257         line = str(self.fp.readline(_MAXLINE + 1), "iso-8859-1")
    258         if len(line) > _MAXLINE:
    259             raise LineTooLong("status line")

/usr/lib/python3.7/socket.py in readinto(self, b)
    587         while True:
    588             try:
--> 589                 return self._sock.recv_into(b)
    590             except timeout:
    591                 self._timeout_occurred = True

/usr/local/lib/python3.7/dist-packages/urllib3/contrib/pyopenssl.py in recv_into(self, *args, **kwargs)
    311     def recv_into(self, *args, **kwargs):
    312         try:
--> 313             return self.connection.recv_into(*args, **kwargs)
    314         except OpenSSL.SSL.SysCallError as e:
    315             if self.suppress_ragged_eofs and e.args == (-1, "Unexpected EOF"):

/usr/lib/python3/dist-packages/OpenSSL/SSL.py in recv_into(self, buffer, nbytes, flags)
   1819             result = _lib.SSL_peek(self._ssl, buf, nbytes)
   1820         else:
-> 1821             result = _lib.SSL_read(self._ssl, buf, nbytes)
   1822         self._raise_ssl_error(self._ssl, result)
   1823 

KeyboardInterrupt: 

Compute Triage Stats

  • The cells below compute a time series indicating the number of untriaged issues as a function of time
  • The graph is used to determine whether the backlog of untriaged issues is increasing or decreasing

In [ ]:
shard_files = glob.glob(os.path.join(issues_dir, "*.json"))

def init_df(offset=0, size=300):
    """Initialize a dataframe of the specified size."""
    return pd.DataFrame({
        "time": [datetime.datetime.now()] * size,
        "delta": np.zeros(size),
    }, index=offset + np.arange(size))


def init_issue_df(offset=0, size=300):
    return pd.DataFrame({
        "created_at": [datetime.datetime(year=2050, month=1, day=1)] * size,
        "triaged_at": [datetime.datetime(year=2050, month=1, day=1)] * size,
        "closed": [bool] * size,
        "url": [""] * size,
        "needs_triage": [bool] * size,
    }, index=offset + np.arange(size))
    
    
def grow_df(df, offset=0, size=300):
    return pd.concat([df, init_df(offset, size)])

num_issues = 0

triage_stats = init_df(size=len(shard_files) * 100 * 2)
issues_df = init_issue_df(size=len(shard_files) * 100)

issues_index = 0

for f in shard_files:
    logging.info("Processing %s", f)
    with open(f) as hf:
        issues = json.load(hf)

    delta = 2 * len(issues)
    if num_issues + delta  > triage_stats.shape[0]:
        # Grow the dataframe
        triage_stats = grow_df(triage_stats, offset=triage_stats.shape[0], size=delta)

    
    if issues_index + len(issues) > issues_df.shape[0]:
        issues_df = grow_df(issues_df, offset= issues_df.shape[0], size=len(issues))    

    for i in issues:        
        info = triage.TriageInfo.from_issue(i)
        
        create_time = dateutil_parser.parse(info.issue["createdAt"])
        
        issues_df["created_at"].at[issues_index] = create_time
        issues_df["url"].at[issues_index] = info.issue["url"]
        issues_df["needs_triage"].at[issues_index] = info.needs_triage
        
        if not info.needs_triage and not info.triaged_at:
            raise ValueError("Issue doesn't need triage but triaged at time not set")
        if info.triaged_at:
            issues_df["triaged_at"].at[issues_index] = info.triaged_at            

        if info.closed_at:
            issues_df["closed"].at[issues_index] = True
        else:
            issues_df["closed"].at[issues_index] = False
        issues_index += 1


issues_df = issues_df[:issues_index]

In [ ]:
# Filter issues to issues created after start_time
indexes = issues_df["created_at"] > start_time
issues_df = issues_df.iloc[indexes.values]
  • Compute a series containing the number of untriaged issues as a function of time

In [ ]:
opened = pd.Series([1]*issues_df.shape[0], index=issues_df["created_at"])
triaged_issues = issues_df.iloc[(issues_df["needs_triage"] == False).values]
triaged = pd.Series([-1]*triaged_issues.shape[0], index=triaged_issues["triaged_at"])

deltas = pd.concat([opened, triaged])
deltas = deltas.sort_index()
untriaged = deltas.cumsum()

Plot Number of Untriaged Issues Over Time

  • The graph below shows the number of untriaged issues over time
  • Ideally this graph should be hovering around zero indicating Kubeflow is triaging issues in a timely fashion
  • If the number of untriaged issues is increasing over time then the Kubeflow project isn't keeping up with incoming issues

In [ ]:
from matplotlib import pylab 
pylab.plot(untriaged.index, untriaged.values, '.-')
pylab.title("Untriaged issues in " + repo)

Triage a Single issue

  • This cell can be used to triage a single issue
  • Its useful if you want to find out specific reasons why an issue isn't considered triaged

In [ ]:
importlib.reload(triage)
triager = triage.IssueTriage()
url = "https://github.com/kubeflow/kubeflow/issues/1583"
issue_info = triager.triage_issue(url)

Fetch Card Id

  • This is a snipped which is useful for getting the id of a project card.
  • We use it to fetch the card id that triage.py should add issues needing triage to.

In [ ]:
project_query="""query projectCards($org: String!, $project: String!) {
  organization(login: $org) {
    projects(last: 1, search: $project) {
      totalCount
      edges {
        node {
          name
          url
          columns(first: 20) {
            totalCount
            pageInfo {
              endCursor
              hasNextPage
            }
            nodes {
              name
              id
            }
          }
        }
      }
    }
  }
}

"""
variables = {
    "org": "kubeflow",
    "project": "Bug Triage",
}
results = client.run_query(project_query, variables)
results