Commit 9c2d41ac by Bui Minh Duc

fixed bug and implement User page

parent 265e25cb
......@@ -3,7 +3,11 @@ class IssuesController < ApplicationController
def index
# need some params: repo, label, filter(include from date, label)
@from_date = params[:date].empty? ? "" : Date.parse(params[:date])
# @from_date = params[:date].empty? ? "" : Date.parse(params[:date])
@from_date = ""
if !params[:date].nil? && !params[:date].empty?
@from_date = Date.parse(params[:date])
end
@filter_labels = params[:filter]
@type_of_issue = params[:type]
......@@ -19,7 +23,7 @@ class IssuesController < ApplicationController
@repo_name = params[:repo]
issues_query = Issue.joins(:repository).joins(:labels).where(
"repositories.name = ? AND labels.name = ? AND issues.is_pull IN (?) AND issues.created_at >= ?",
params[:repo], params[:label], type_of_issue_query, @from_date)
params[:repo], params[:label], type_of_issue_query, @from_date).order("issues.id DESC")
if @filter_labels.nil?
@issues = issues_query
......
class MainController < ApplicationController
def index
# byebug
@from_date = session[:filter_date]
@label_filter_params = session[:filter_label]
if @label_filter_params.nil? || @label_filter_params.empty?
@label_filter_params = []
......@@ -81,6 +81,7 @@ class MainController < ApplicationController
end
def update_params_selected
# byebug
session[:filter_label] = params[:selected]
session[:filter_date] = params[:date]
session[:type_of_issue] = params[:issue_type]
......
......@@ -4,7 +4,9 @@ class PullsController < ApplicationController
@id = params[:id]
@pull = Issue.find_by(id: @id)
@issue = @pull.issue
@repo = @issue.repository
if !@issue.nil?
@repo = @issue.repository
end
@comments = @pull.comments.where(comment_type: 0)
@rv_comments = @pull.review_comments
......
......@@ -24,6 +24,8 @@ class RepositoriesController < ApplicationController
else
@issues = @repo.issues.where(is_pull: false)
end
@issues = @issues.order("id DESC")
@issues = @issues.includes(:labels, :pull_requests)
end
......
class UserController < ApplicationController
def index
@users = User.all
end
end
class UsersController < ApplicationController
def index
@users = User.where(team_ventura: true)#.includes(own_issues: [:review_comments, :comments]).where(issues: {is_pull: true, comments: { comment_type: 1 }}, )
@score = Hash.new
@users.each do |user|
user_score = Hash.new
user_score[:before] = {0 => 0, 1 => 0, 2 => 0, 3 => 0}
user_score[:after] = {0 => 0, 1 => 0, 2 => 0, 3 => 0}
pulls = user.own_issues.includes(:review_comments, :comments).where(is_pull: true, comments: { comment_type: 1 })
pulls.each do |pull|
rv_comments = pull.review_comments
rv_comments.each do |rv_comment|
user_score[:before][rv_comment.score.to_i] += 1
end
comments = pull.comments.where(comment_type: 1)
comments.each do |comment|
user_score[:after][comment.score.to_i] += 1
end
end
@score[user.login.to_sym] = user_score
end
end
def show
@user = User.find_by(id: params[:id])
@pulls = Issue.where(user_id: @user.id, is_pull: true).includes(:review_comments, :comments).where(comments: { comment_type: 1 })
@score_before = {0 => 0, 1 => 0, 2 => 0, 3 => 0}
@score_after = {0 => 0, 1 => 0, 2 => 0, 3 => 0}
@pulls.each do |pull|
rv_comments = pull.review_comments
rv_comments.each do |rv_comment|
@score_before[rv_comment.score.to_i] += 1
end
comments = pull.comments.where(comment_type: 1)
comments.each do |comment|
@score_after[comment.score.to_i] += 1
end
end
# @pulls = Issue.where(user_id: @user.id, is_pull: true)
end
end
module UsersHelper
def before_release_point(score)
before_point(score)
end
def after_release_point(score)
after_point(score)
end
def arg_point(score)
x = (estimated_point + before_point(score) + after_point(score)) / 3
x.round(2)
end
def total_comment(score)
score.map{ |k, v| v }.sum
end
def total_minus_point_before(score)
x = score[1] * 0.1 + score[2] * 0.25 + score[3] * 0.5
x.round(2)
end
def total_point_before(score)
x = 1.0 - (score[1] * 0.1 + score[2] * 0.25 + score[3] * 0.5) / total_comment(score)
x.round(2)
end
def total_minus_point_after(score)
x = score[1] * 0.2 + score[2] * 0.5 + score[3] * 1.0
x.round(2)
end
def total_point_after(score)
x = 1.0 - (score[1] * 0.2 + score[2] * 0.5 + score[3] * 1.0) / total_comment(score)
x.round(2)
end
private
def estimated_point
1.0
end
def before_point(score)
score_before = score[:before]
x1 = score_before[0] * 0 + score_before[1] * 0.1 + score_before[2] * 0.25 + score_before[3] * 0.5
x2 = score_before[0] + score_before[1] + score_before[2] + score_before[3]
x3 = 1.0 - x1 / x2
if x2 != 0
x3.round(2)
else
1.0
end
end
def after_point(score)
score_after = score[:after]
x1 = score_after[0] * 0 + score_after[1] * 0.2 + score_after[2] * 0.5 + score_after[3] * 1.0
x2 = score_after[0] + score_after[1] + score_after[2] + score_after[3]
x3 = 1.0 - x1 / x2
if x2 != 0
x3.round(2)
else
1.0
end
end
end
class User < ApplicationRecord
has_and_belongs_to_many :issues
has_many :own_issues, class_name: "Issue", foreign_key: "user_id"
end
......@@ -44,7 +44,9 @@
</div>
<div id="collapse1" class="panel-collapse collapse">
<div class="panel-body">
<%= $markdown.render(@issue.body).html_safe %>
<% unless @issue.body.nil? %>
<%= $markdown.render(@issue.body).html_safe %>
<% end %>
</div>
</div>
</div>
......
......@@ -12,7 +12,7 @@
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><%= link_to "User", user_path %></li>
<li><%= link_to "User", users_path %></li>
<li><%= link_to "Repository", repositories_path %></li>
<li><%= link_to "Settings", settings_path %></li>
</ul>
......
......@@ -147,9 +147,10 @@
url: "<%= update_params_selected_path %>",
data: { selected: selected_labels, date: from_date, issue_type: issue_type },
success: function(res) {
// location.reload();
location.reload();
}
});
return false;
});
$(document).on('ready', function(event) {
......
<div class="container">
<ol class="breadcrumb">
<li><%= link_to @repo.name, @repo %></li>
<li><%= link_to @issue.title, @issue %></li>
<% if !@issue.nil? %>
<li><%= link_to @repo.name, @repo %></li>
<li><%= link_to @issue.title, @issue %></li>
<% end %>
<li><%= @pull.title %></li>
</ol>
<div class="row">
......
......@@ -32,7 +32,7 @@
<td><%= repo.description %></td>
<td>
<%= form_for :repo, url: { action: "update", id: repo.id }, method: :patch, html: { class: "form-inline" } do |f| %>
<%= f.submit "Update" %>
<%= f.submit "Update", class: "btn btn-default btn-xs" %>
<i class="fa fa-refresh fa-spin" style="font-size:18px; visibility: hidden;"></i>
<% end %>
</td>
......
......@@ -38,7 +38,12 @@
<tbody>
<% @issues.each do |issue| %>
<tr>
<td><b><%= link_to issue.title, issue %></b></td>
<td>
<b><%= link_to issue.title, issue %></b>
<% issue.labels.each do |label| %>
<span class="label label-default" style="background-color: #<%= label.color %>; color: #<%= get_text_color(label.color) %>;"><%= label.name %></span>
<% end %>
</td>
<td><%= issue.created_at %></td>
</tr>
<% issue.pull_requests.each do |pull| %>
......@@ -51,4 +56,7 @@
</tbody>
</table>
</div>
<div style="height: 100px;">
</div>
</div>
<div class="container">
<div id="toolbar">
<form class="form-inline">
<div class="form-group">
<label for="from">From</label>
<div class='input-group date' id='from_date'>
<input type='text' class="form-control" />
<span class="input-group-addon">
<span class="glyphicon glyphicon-calendar"></span>
</span>
</div>
<label for="to">To</label>
<div class='input-group date' id='to_date'>
<input type='text' class="form-control" />
<span class="input-group-addon">
<span class="glyphicon glyphicon-calendar"></span>
</span>
</div>
<div class="input-group">
<input type="submit" name="Filter" class="btn btn-default">
</div>
</div>
</form>
</div>
<div>
<table data-toolbar="#toolbar"
data-toggle="table"
......@@ -15,23 +39,38 @@
<thead>
<tr>
<th class="col-md-4">User name</th>
<th class="col-md-2">Score 1 (80%)</th>
<th class="col-md-2">Score 2 (10%)</th>
<th class="col-md-2">Score 3 (10%)</th>
<th class="col-md-2">Arg Score</th>
<th class="col-md-2">Estimated Time (A)</th>
<th class="col-md-2">Before Release (B)</th>
<th class="col-md-2">After Release (C)</th>
<th class="col-md-2">Arg Point (A + B + C) / 3</th>
</tr>
</thead>
<tbody>
<% @users.each do |user| %>
<tr>
<td><%= link_to user.login, user.html_url %></td>
<td>10</td>
<td>10</td>
<td>10</td>
<td>10</td>
<td><%= link_to user.login, user_path(user) %></td>
<td>1.0</td>
<td><%= before_release_point @score[user.login.to_sym] %></td>
<td><%= after_release_point @score[user.login.to_sym] %></td>
<td><%= arg_point @score[user.login.to_sym] %></td>
</tr>
<% end %>
</tbody>
</table>
</div>
</div>
<script type="text/javascript">
$(document).on('ready', function(event) {
// location.reload();
$('#from_date').datetimepicker({
format: "DD/MM/YYYY",
showClear: true
});
$('#to_date').datetimepicker({
format: "DD/MM/YYYY",
showClear: true
});
});
</script>
<div class="container">
<ol class="breadcrumb">
<li><%= @user.login %></li>
</ol>
<div class="panel panel-default">
<div class="panel-heading">
<h4>Before Release</h4>
</div>
<table class="table table-bordered">
<tbody>
<tr>
<td class="col-md-3">None</td>
<td class="col-md-3"><%= @score_before[0] %></td>
<td class="col-md-3"><%= "x 0" %></td>
<td class="col-md-3"><%= @score_before[0] * 0 %></td>
</tr>
<tr>
<td class="col-md-3">Small</td>
<td class="col-md-3"><%= @score_before[1] %></td>
<td class="col-md-3"><%= "x 0.1" %></td>
<td class="col-md-3"><%= @score_before[1] * 0.1 %></td>
</tr>
<tr>
<td class="col-md-3">Medium</td>
<td class="col-md-3"><%= @score_before[2] %></td>
<td class="col-md-3"><%= "x 0.25" %></td>
<td class="col-md-3"><%= @score_before[2] * 0.25 %></td>
</tr>
<tr>
<td class="col-md-3">Large</td>
<td class="col-md-3"><%= @score_before[3] %></td>
<td class="col-md-3"><%= "x 0.5" %></td>
<td class="col-md-3"><%= @score_before[3] * 0.5 %></td>
</tr>
<tr style="font-weight: bold">
<td class="col-md-3 text-right">Total Comment (A)</td>
<td class="col-md-3"><%= total_comment @score_before %></td>
<td class="col-md-3 text-right">Total Minus Point (B)</td>
<td class="col-md-3"><%= total_minus_point_before @score_before %></td>
</tr>
<tr style="font-weight: bold">
<td class="col-md-3"></td>
<td class="col-md-3"></td>
<td class="col-md-3 text-right">Total Point 1 - (B) / (A)</td>
<td class="col-md-3"><%= total_point_before @score_before %></td>
</tr>
</tbody>
</table>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4>After Release</h4>
</div>
<table class="table table-bordered">
<tbody>
<tr>
<td class="col-md-3">None</td>
<td class="col-md-3"><%= @score_after[0] %></td>
<td class="col-md-3"><%= "x 0" %></td>
<td class="col-md-3"><%= @score_after[0] * 0 %></td>
</tr>
<tr>
<td class="col-md-3">Small</td>
<td class="col-md-3"><%= @score_after[1] %></td>
<td class="col-md-3"><%= "x 0.2" %></td>
<td class="col-md-3"><%= @score_after[1] * 0.2 %></td>
</tr>
<tr>
<td class="col-md-3">Medium</td>
<td class="col-md-3"><%= @score_after[2] %></td>
<td class="col-md-3"><%= "x 0.5" %></td>
<td class="col-md-3"><%= @score_after[2] * 0.5 %></td>
</tr>
<tr style="font-weight: bold">
<td class="col-md-3 text-right">Total Comment (A)</td>
<td class="col-md-3"><%= total_comment @score_after %></td>
<td class="col-md-3 text-right">Total Minus Point (B)</td>
<td class="col-md-3"><%= total_minus_point_after @score_after %></td>
</tr>
<tr style="font-weight: bold">
<td class="col-md-3"></td>
<td class="col-md-3"></td>
<td class="col-md-3 text-right">Total Point 1 - (B) / (A)</td>
<td class="col-md-3"><%= total_point_after @score_after %></td>
</tr>
</tbody>
</table>
</div>
<table class="table table-bordered">
<thead>
<tr>
<th>List of pulls</th>
</tr>
</thead>
<tbody>
<% @pulls.each do |pull| %>
<tr>
<td><%= link_to pull.title, pull_path(pull) %></td>
</tr>
<% end %>
</tbody>
</table>
</div>
......@@ -5,7 +5,7 @@ Rails.application.routes.draw do
post "/update_params_selected", to: "main#update_params_selected"
post "/load_repo_selected", to: "main#load_repo_selected"
get "/user", to: "user#index"
resources :users
resources :issues
resources :pulls do
resources :comments
......
class AddTeamVenturaToUser < ActiveRecord::Migration[5.0]
def change
add_column :users, :team_ventura, :boolean
end
end
......@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20170110090046) do
ActiveRecord::Schema.define(version: 20170116025901) do
create_table "comments", force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin" do |t|
t.string "html_url"
......@@ -109,6 +109,12 @@ ActiveRecord::Schema.define(version: 20170110090046) do
t.index ["user_id"], name: "index_review_comments_on_user_id", using: :btree
end
create_table "teams", force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin" do |t|
t.string "name"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
create_table "timelines", force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin" do |t|
t.integer "duration"
t.integer "issue_id"
......@@ -124,8 +130,11 @@ ActiveRecord::Schema.define(version: 20170110090046) do
t.string "login"
t.string "url"
t.string "html_url"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.integer "team_id"
t.boolean "team_ventura"
t.index ["team_id"], name: "index_users_on_team_id", using: :btree
end
add_foreign_key "comments", "issues"
......@@ -136,4 +145,5 @@ ActiveRecord::Schema.define(version: 20170110090046) do
add_foreign_key "review_comments", "issues"
add_foreign_key "review_comments", "users"
add_foreign_key "timelines", "issues"
add_foreign_key "users", "teams"
end
......@@ -528,3 +528,684 @@ I, [2017-01-12T16:00:04.088863 #428] INFO -- : Insert issues
I, [2017-01-12T16:01:26.415292 #428] INFO -- : Insert comments
I, [2017-01-12T16:01:52.210615 #428] INFO -- : Insert review comments
I, [2017-01-12T16:02:37.067253 #428] INFO -- : Finished task update in 153.136871445s
I, [2017-01-12T17:00:03.339439 #5062] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-12T17:00:03.342724 #5062] INFO -- : Insert issues
I, [2017-01-12T17:01:32.916267 #5062] INFO -- : Insert comments
I, [2017-01-12T17:02:03.938824 #5062] INFO -- : Insert review comments
I, [2017-01-12T17:02:48.800511 #5062] INFO -- : Finished task update in 165.618463979s
I, [2017-01-12T18:00:04.034419 #6098] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-12T18:00:04.038173 #6098] INFO -- : Insert issues
I, [2017-01-12T18:01:38.392851 #6098] INFO -- : Insert comments
I, [2017-01-12T18:02:12.103623 #6098] INFO -- : Insert review comments
I, [2017-01-12T18:03:04.064701 #6098] INFO -- : Finished task update in 180.1677396s
I, [2017-01-12T19:00:03.235222 #7063] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-12T19:00:03.238735 #7063] INFO -- : Insert issues
I, [2017-01-12T19:01:31.543453 #7063] INFO -- : Insert comments
I, [2017-01-12T19:02:02.241966 #7063] INFO -- : Insert review comments
I, [2017-01-12T19:02:49.826439 #7063] INFO -- : Finished task update in 166.742488833s
I, [2017-01-12T20:00:03.919929 #8232] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-12T20:00:03.923153 #8232] INFO -- : Insert issues
I, [2017-01-12T20:01:38.471891 #8232] INFO -- : Insert comments
I, [2017-01-12T20:02:11.495712 #8232] INFO -- : Insert review comments
I, [2017-01-12T20:03:01.611916 #8232] INFO -- : Finished task update in 177.844249778s
I, [2017-01-12T21:00:03.737672 #9422] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-12T21:00:03.740902 #9422] INFO -- : Insert issues
I, [2017-01-12T21:01:38.202283 #9422] INFO -- : Insert comments
I, [2017-01-12T21:02:13.970449 #9422] INFO -- : Insert review comments
I, [2017-01-12T21:03:05.188789 #9422] INFO -- : Finished task update in 181.602425446s
I, [2017-01-12T22:00:03.299351 #10466] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-12T22:00:03.302616 #10466] INFO -- : Insert issues
I, [2017-01-12T22:01:37.690713 #10466] INFO -- : Insert comments
I, [2017-01-12T22:02:15.156351 #10466] INFO -- : Insert review comments
I, [2017-01-12T22:03:01.433008 #10466] INFO -- : Finished task update in 178.290145371s
I, [2017-01-12T23:00:03.534355 #11774] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-12T23:00:03.537845 #11774] INFO -- : Insert issues
I, [2017-01-12T23:01:37.806307 #11774] INFO -- : Insert comments
I, [2017-01-12T23:02:11.199133 #11774] INFO -- : Insert review comments
I, [2017-01-12T23:03:00.872652 #11774] INFO -- : Finished task update in 177.495786159s
I, [2017-01-13T00:00:04.079039 #12774] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-13T00:00:04.082579 #12774] INFO -- : Insert issues
I, [2017-01-13T00:01:26.023314 #12774] INFO -- : Insert comments
I, [2017-01-13T00:01:52.521344 #12774] INFO -- : Insert review comments
I, [2017-01-13T00:02:36.499280 #12774] INFO -- : Finished task update in 152.609388541s
I, [2017-01-13T01:00:03.672115 #13706] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-13T01:00:03.675623 #13706] INFO -- : Insert issues
I, [2017-01-13T01:01:29.267249 #13706] INFO -- : Insert comments
I, [2017-01-13T01:01:55.118105 #13706] INFO -- : Insert review comments
I, [2017-01-13T01:02:38.668172 #13706] INFO -- : Finished task update in 155.148042573s
I, [2017-01-13T02:00:03.812135 #14611] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-13T02:00:03.815599 #14611] INFO -- : Insert issues
I, [2017-01-13T02:01:29.761353 #14611] INFO -- : Insert comments
I, [2017-01-13T02:01:56.519572 #14611] INFO -- : Insert review comments
I, [2017-01-13T02:02:36.299930 #14611] INFO -- : Finished task update in 152.640208836s
I, [2017-01-13T03:00:03.457048 #15502] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-13T03:00:03.460614 #15502] INFO -- : Insert issues
I, [2017-01-13T03:01:27.795892 #15502] INFO -- : Insert comments
I, [2017-01-13T03:01:53.511395 #15502] INFO -- : Insert review comments
I, [2017-01-13T03:02:34.642742 #15502] INFO -- : Finished task update in 151.341643073s
I, [2017-01-13T04:00:03.839405 #16519] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-13T04:00:03.842920 #16519] INFO -- : Insert issues
I, [2017-01-13T04:01:28.663007 #16519] INFO -- : Insert comments
I, [2017-01-13T04:01:54.402482 #16519] INFO -- : Insert review comments
I, [2017-01-13T04:02:36.143200 #16519] INFO -- : Finished task update in 152.459369141s
I, [2017-01-13T05:00:03.247700 #17550] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-13T05:00:03.251172 #17550] INFO -- : Insert issues
I, [2017-01-13T05:01:26.318907 #17550] INFO -- : Insert comments
I, [2017-01-13T05:01:52.148861 #17550] INFO -- : Insert review comments
I, [2017-01-13T05:02:28.790902 #17550] INFO -- : Finished task update in 145.698303495s
I, [2017-01-13T06:00:03.907162 #18454] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-13T06:00:03.910661 #18454] INFO -- : Insert issues
I, [2017-01-13T06:01:26.652273 #18454] INFO -- : Insert comments
I, [2017-01-13T06:01:52.203662 #18454] INFO -- : Insert review comments
I, [2017-01-13T06:02:31.445612 #18454] INFO -- : Finished task update in 147.69436311s
I, [2017-01-13T07:00:03.587729 #20005] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-13T07:00:03.591002 #20005] INFO -- : Insert issues
I, [2017-01-13T07:01:28.443240 #20005] INFO -- : Insert comments
I, [2017-01-13T07:01:53.869299 #20005] INFO -- : Insert review comments
I, [2017-01-13T07:02:32.085462 #20005] INFO -- : Finished task update in 148.64863344s
I, [2017-01-13T08:00:03.358042 #22614] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-13T08:00:03.361292 #22614] INFO -- : Insert issues
I, [2017-01-13T08:01:28.852287 #22614] INFO -- : Insert comments
I, [2017-01-13T08:01:53.764714 #22614] INFO -- : Insert review comments
I, [2017-01-13T08:02:29.560048 #22614] INFO -- : Finished task update in 146.35253758s
I, [2017-01-13T09:00:03.794095 #23852] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-13T09:00:03.797604 #23852] INFO -- : Insert issues
I, [2017-01-13T09:01:28.789343 #23852] INFO -- : Insert comments
I, [2017-01-13T09:01:55.208734 #23852] INFO -- : Insert review comments
I, [2017-01-13T09:02:35.308021 #23852] INFO -- : Finished task update in 151.650381115s
I, [2017-01-13T10:00:03.442791 #25032] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-13T10:00:03.446082 #25032] INFO -- : Insert issues
I, [2017-01-13T10:01:27.206134 #25032] INFO -- : Insert comments
I, [2017-01-13T10:01:52.705577 #25032] INFO -- : Insert review comments
I, [2017-01-13T10:02:28.512216 #25032] INFO -- : Finished task update in 145.224243498s
I, [2017-01-13T11:00:03.650885 #26043] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-13T11:00:03.654182 #26043] INFO -- : Insert issues
I, [2017-01-13T11:01:29.052846 #26043] INFO -- : Insert comments
I, [2017-01-13T11:01:54.458239 #26043] INFO -- : Insert review comments
I, [2017-01-13T11:02:27.066518 #26043] INFO -- : Finished task update in 143.565707s
I, [2017-01-13T12:00:03.201003 #27009] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-13T12:00:03.204172 #27009] INFO -- : Insert issues
I, [2017-01-13T12:01:25.889208 #27009] INFO -- : Insert comments
I, [2017-01-13T12:01:51.265167 #27009] INFO -- : Insert review comments
I, [2017-01-13T12:02:28.912539 #27009] INFO -- : Finished task update in 145.845542096s
I, [2017-01-13T13:00:03.045340 #27933] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-13T13:00:03.048608 #27933] INFO -- : Insert issues
I, [2017-01-13T13:01:25.612457 #27933] INFO -- : Insert comments
I, [2017-01-13T13:01:50.989212 #27933] INFO -- : Insert review comments
I, [2017-01-13T13:02:28.207413 #27933] INFO -- : Finished task update in 145.316560413s
I, [2017-01-13T14:00:03.380003 #28797] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-13T14:00:03.383295 #28797] INFO -- : Insert issues
I, [2017-01-13T14:01:26.020157 #28797] INFO -- : Insert comments
I, [2017-01-13T14:01:53.923217 #28797] INFO -- : Insert review comments
I, [2017-01-13T14:02:30.775188 #28797] INFO -- : Finished task update in 147.550099708s
I, [2017-01-13T15:00:03.884854 #29961] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-13T15:00:03.888421 #29961] INFO -- : Insert issues
I, [2017-01-13T15:01:27.327868 #29961] INFO -- : Insert comments
I, [2017-01-13T15:01:53.985306 #29961] INFO -- : Insert review comments
I, [2017-01-13T15:02:28.642102 #29961] INFO -- : Finished task update in 144.913393021s
I, [2017-01-13T16:00:03.755898 #30877] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-13T16:00:03.759175 #30877] INFO -- : Insert issues
I, [2017-01-13T16:01:27.685743 #30877] INFO -- : Insert comments
I, [2017-01-13T16:01:54.832640 #30877] INFO -- : Insert review comments
I, [2017-01-13T16:02:28.705404 #30877] INFO -- : Finished task update in 145.102949172s
I, [2017-01-13T17:00:03.793708 #31758] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-13T17:00:03.797034 #31758] INFO -- : Insert issues
I, [2017-01-13T17:01:29.032494 #31758] INFO -- : Insert comments
I, [2017-01-13T17:01:55.859323 #31758] INFO -- : Insert review comments
I, [2017-01-13T17:02:36.349743 #31758] INFO -- : Finished task update in 152.708942962s
I, [2017-01-13T18:00:03.463960 #32695] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-13T18:00:03.467445 #32695] INFO -- : Insert issues
I, [2017-01-13T18:01:27.446775 #32695] INFO -- : Insert comments
I, [2017-01-13T18:01:54.064465 #32695] INFO -- : Insert review comments
I, [2017-01-13T18:02:31.861239 #32695] INFO -- : Finished task update in 148.553316034s
I, [2017-01-13T19:00:03.926078 #1139] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-13T19:00:03.929388 #1139] INFO -- : Insert issues
I, [2017-01-13T19:01:26.958287 #1139] INFO -- : Insert comments
I, [2017-01-13T19:01:53.641133 #1139] INFO -- : Insert review comments
I, [2017-01-13T19:02:34.047947 #1139] INFO -- : Finished task update in 150.277021636s
I, [2017-01-13T20:00:03.116574 #2314] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-13T20:00:03.119814 #2314] INFO -- : Insert issues
I, [2017-01-13T20:01:29.414665 #2314] INFO -- : Insert comments
I, [2017-01-13T20:01:59.289165 #2314] INFO -- : Insert review comments
I, [2017-01-13T20:02:43.787589 #2314] INFO -- : Finished task update in 160.825504006s
I, [2017-01-13T21:00:03.921000 #3264] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-13T21:00:03.924363 #3264] INFO -- : Insert issues
I, [2017-01-13T21:01:26.814120 #3264] INFO -- : Insert comments
I, [2017-01-13T21:01:54.263497 #3264] INFO -- : Insert review comments
I, [2017-01-13T21:02:34.154330 #3264] INFO -- : Finished task update in 150.385044631s
I, [2017-01-13T22:00:03.301645 #4228] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-13T22:00:03.304878 #4228] INFO -- : Insert issues
I, [2017-01-13T22:01:35.348652 #4228] INFO -- : Insert comments
I, [2017-01-13T22:02:10.517826 #4228] INFO -- : Insert review comments
I, [2017-01-13T22:03:03.296373 #4228] INFO -- : Finished task update in 180.145826177s
I, [2017-01-13T23:00:03.442531 #5151] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-13T23:00:03.446084 #5151] INFO -- : Insert issues
I, [2017-01-13T23:01:36.046807 #5151] INFO -- : Insert comments
I, [2017-01-13T23:02:09.749686 #5151] INFO -- : Insert review comments
I, [2017-01-13T23:03:01.765672 #5151] INFO -- : Finished task update in 178.47887358s
I, [2017-01-14T00:00:03.829992 #6050] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-14T00:00:03.833279 #6050] INFO -- : Insert issues
I, [2017-01-14T00:01:28.315990 #6050] INFO -- : Insert comments
I, [2017-01-14T00:01:55.414666 #6050] INFO -- : Insert review comments
I, [2017-01-14T00:02:39.392150 #6050] INFO -- : Finished task update in 155.71552125s
I, [2017-01-14T01:00:03.470259 #6954] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-14T01:00:03.473586 #6954] INFO -- : Insert issues
I, [2017-01-14T01:01:27.140317 #6954] INFO -- : Insert comments
I, [2017-01-14T01:01:54.380563 #6954] INFO -- : Insert review comments
I, [2017-01-14T01:02:37.721897 #6954] INFO -- : Finished task update in 154.401557295s
I, [2017-01-14T02:00:03.864790 #7843] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-14T02:00:03.868315 #7843] INFO -- : Insert issues
I, [2017-01-14T02:01:30.124880 #7843] INFO -- : Insert comments
I, [2017-01-14T02:01:57.136408 #7843] INFO -- : Insert review comments
I, [2017-01-14T02:02:43.062393 #7843] INFO -- : Finished task update in 159.353977368s
I, [2017-01-14T03:00:03.182669 #8713] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-14T03:00:03.185923 #8713] INFO -- : Insert issues
I, [2017-01-14T03:01:27.994541 #8713] INFO -- : Insert comments
I, [2017-01-14T03:01:54.995951 #8713] INFO -- : Insert review comments
I, [2017-01-14T03:02:40.389220 #8713] INFO -- : Finished task update in 157.362423306s
I, [2017-01-14T04:00:03.494558 #9703] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-14T04:00:03.497804 #9703] INFO -- : Insert issues
I, [2017-01-14T04:01:28.187421 #9703] INFO -- : Insert comments
I, [2017-01-14T04:01:54.961336 #9703] INFO -- : Insert review comments
I, [2017-01-14T04:02:42.229450 #9703] INFO -- : Finished task update in 158.888323614s
I, [2017-01-14T05:00:03.352297 #10641] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-14T05:00:03.355871 #10641] INFO -- : Insert issues
I, [2017-01-14T05:01:27.995906 #10641] INFO -- : Insert comments
I, [2017-01-14T05:01:54.934984 #10641] INFO -- : Insert review comments
I, [2017-01-14T05:02:41.327637 #10641] INFO -- : Finished task update in 158.129972163s
I, [2017-01-14T06:00:03.475032 #11521] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-14T06:00:03.478293 #11521] INFO -- : Insert issues
I, [2017-01-14T06:01:27.360966 #11521] INFO -- : Insert comments
I, [2017-01-14T06:01:54.405842 #11521] INFO -- : Insert review comments
I, [2017-01-14T06:02:40.074788 #11521] INFO -- : Finished task update in 156.753348988s
I, [2017-01-14T07:00:03.270120 #14156] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-14T07:00:03.273435 #14156] INFO -- : Insert issues
I, [2017-01-14T07:01:24.283945 #14156] INFO -- : Insert comments
I, [2017-01-14T07:01:50.977207 #14156] INFO -- : Insert review comments
I, [2017-01-14T07:02:29.975933 #14156] INFO -- : Finished task update in 146.860172924s
I, [2017-01-14T08:00:03.165703 #15430] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-14T08:00:03.168982 #15430] INFO -- : Insert issues
I, [2017-01-14T08:01:26.618850 #15430] INFO -- : Insert comments
I, [2017-01-14T08:01:52.828057 #15430] INFO -- : Insert review comments
I, [2017-01-14T08:02:34.449048 #15430] INFO -- : Finished task update in 151.435956843s
I, [2017-01-14T09:00:03.585072 #16319] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-14T09:00:03.588587 #16319] INFO -- : Insert issues
I, [2017-01-14T09:01:26.537016 #16319] INFO -- : Insert comments
I, [2017-01-14T09:01:53.151045 #16319] INFO -- : Insert review comments
I, [2017-01-14T09:02:30.655176 #16319] INFO -- : Finished task update in 147.226068894s
I, [2017-01-14T10:00:03.790151 #17248] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-14T10:00:03.793372 #17248] INFO -- : Insert issues
I, [2017-01-14T10:01:25.867943 #17248] INFO -- : Insert comments
I, [2017-01-14T10:01:52.438357 #17248] INFO -- : Insert review comments
I, [2017-01-14T10:02:26.699263 #17248] INFO -- : Finished task update in 143.05891918s
I, [2017-01-14T11:00:03.815678 #18162] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-14T11:00:03.819110 #18162] INFO -- : Insert issues
I, [2017-01-14T11:01:25.203051 #18162] INFO -- : Insert comments
I, [2017-01-14T11:01:51.550393 #18162] INFO -- : Insert review comments
I, [2017-01-14T11:02:28.366326 #18162] INFO -- : Finished task update in 144.688158439s
I, [2017-01-14T12:00:03.514808 #19079] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-14T12:00:03.518360 #19079] INFO -- : Insert issues
I, [2017-01-14T12:01:26.032553 #19079] INFO -- : Insert comments
I, [2017-01-14T12:01:52.542381 #19079] INFO -- : Insert review comments
I, [2017-01-14T12:02:25.595755 #19079] INFO -- : Finished task update in 142.233898241s
I, [2017-01-14T13:00:03.755149 #20171] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-14T13:00:03.758396 #20171] INFO -- : Insert issues
I, [2017-01-14T13:01:24.689008 #20171] INFO -- : Insert comments
I, [2017-01-14T13:01:50.952831 #20171] INFO -- : Insert review comments
I, [2017-01-14T13:02:24.507127 #20171] INFO -- : Finished task update in 140.908548499s
I, [2017-01-14T14:00:03.618094 #21060] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-14T14:00:03.621333 #21060] INFO -- : Insert issues
I, [2017-01-14T14:01:27.276501 #21060] INFO -- : Insert comments
I, [2017-01-14T14:01:53.706447 #21060] INFO -- : Insert review comments
I, [2017-01-14T14:02:27.701313 #21060] INFO -- : Finished task update in 144.23665847s
I, [2017-01-14T15:00:03.829412 #21962] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-14T15:00:03.832923 #21962] INFO -- : Insert issues
I, [2017-01-14T15:01:25.396902 #21962] INFO -- : Insert comments
I, [2017-01-14T15:01:51.632976 #21962] INFO -- : Insert review comments
I, [2017-01-14T15:02:25.428748 #21962] INFO -- : Finished task update in 141.753593294s
I, [2017-01-14T16:00:03.574526 #22862] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-14T16:00:03.577993 #22862] INFO -- : Insert issues
I, [2017-01-14T16:01:24.923200 #22862] INFO -- : Insert comments
I, [2017-01-14T16:01:51.190460 #22862] INFO -- : Insert review comments
I, [2017-01-14T16:02:24.752659 #22862] INFO -- : Finished task update in 141.31221952s
I, [2017-01-14T17:00:03.876531 #23769] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-14T17:00:03.879764 #23769] INFO -- : Insert issues
I, [2017-01-14T17:01:25.878115 #23769] INFO -- : Insert comments
I, [2017-01-14T17:01:52.341052 #23769] INFO -- : Insert review comments
I, [2017-01-14T17:02:28.557824 #23769] INFO -- : Finished task update in 144.838997568s
I, [2017-01-14T18:00:03.742928 #24651] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-14T18:00:03.746155 #24651] INFO -- : Insert issues
I, [2017-01-14T18:01:24.590860 #24651] INFO -- : Insert comments
I, [2017-01-14T18:01:50.640969 #24651] INFO -- : Insert review comments
I, [2017-01-14T18:02:27.018091 #24651] INFO -- : Finished task update in 143.426160926s
I, [2017-01-14T19:00:03.193275 #25519] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-14T19:00:03.196790 #25519] INFO -- : Insert issues
I, [2017-01-14T19:01:25.256225 #25519] INFO -- : Insert comments
I, [2017-01-14T19:01:51.405682 #25519] INFO -- : Insert review comments
I, [2017-01-14T19:02:28.476012 #25519] INFO -- : Finished task update in 145.438412691s
I, [2017-01-14T20:00:03.610256 #26418] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-14T20:00:03.613711 #26418] INFO -- : Insert issues
I, [2017-01-14T20:01:25.697046 #26418] INFO -- : Insert comments
I, [2017-01-14T20:01:51.921222 #26418] INFO -- : Insert review comments
I, [2017-01-14T20:02:25.701755 #26418] INFO -- : Finished task update in 142.227088998s
I, [2017-01-14T21:00:03.804297 #27385] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-14T21:00:03.807523 #27385] INFO -- : Insert issues
I, [2017-01-14T21:01:27.507101 #27385] INFO -- : Insert comments
I, [2017-01-14T21:01:54.215623 #27385] INFO -- : Insert review comments
I, [2017-01-14T21:02:33.403380 #27385] INFO -- : Finished task update in 149.748797644s
I, [2017-01-14T22:00:03.531470 #28260] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-14T22:00:03.535096 #28260] INFO -- : Insert issues
I, [2017-01-14T22:01:25.795903 #28260] INFO -- : Insert comments
I, [2017-01-14T22:01:52.143480 #28260] INFO -- : Insert review comments
I, [2017-01-14T22:02:28.215723 #28260] INFO -- : Finished task update in 144.836964007s
I, [2017-01-14T23:00:03.378635 #29145] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-14T23:00:03.381986 #29145] INFO -- : Insert issues
I, [2017-01-14T23:01:25.438458 #29145] INFO -- : Insert comments
I, [2017-01-14T23:01:51.910182 #29145] INFO -- : Insert review comments
I, [2017-01-14T23:02:28.409517 #29145] INFO -- : Finished task update in 145.166519603s
I, [2017-01-15T00:00:03.592188 #30051] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-15T00:00:03.595706 #30051] INFO -- : Insert issues
I, [2017-01-15T00:01:30.861618 #30051] INFO -- : Insert comments
I, [2017-01-15T00:01:57.233396 #30051] INFO -- : Insert review comments
I, [2017-01-15T00:02:36.809809 #30051] INFO -- : Finished task update in 153.37393668s
I, [2017-01-15T01:00:03.874449 #30930] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-15T01:00:03.877768 #30930] INFO -- : Insert issues
I, [2017-01-15T01:01:27.246620 #30930] INFO -- : Insert comments
I, [2017-01-15T01:01:53.926045 #30930] INFO -- : Insert review comments
I, [2017-01-15T01:02:31.917651 #30930] INFO -- : Finished task update in 148.197097446s
I, [2017-01-15T02:00:04.016513 #31820] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-15T02:00:04.019750 #31820] INFO -- : Insert issues
I, [2017-01-15T02:01:25.450240 #31820] INFO -- : Insert comments
I, [2017-01-15T02:01:52.261383 #31820] INFO -- : Insert review comments
I, [2017-01-15T02:02:26.796390 #31820] INFO -- : Finished task update in 142.930674443s
I, [2017-01-15T03:00:03.884315 #32710] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-15T03:00:03.887666 #32710] INFO -- : Insert issues
I, [2017-01-15T03:01:26.343093 #32710] INFO -- : Insert comments
I, [2017-01-15T03:01:53.185297 #32710] INFO -- : Insert review comments
I, [2017-01-15T03:02:26.886868 #32710] INFO -- : Finished task update in 143.155924021s
I, [2017-01-15T04:00:03.950692 #1159] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-15T04:00:03.953952 #1159] INFO -- : Insert issues
I, [2017-01-15T04:01:26.966177 #1159] INFO -- : Insert comments
I, [2017-01-15T04:01:53.737509 #1159] INFO -- : Insert review comments
I, [2017-01-15T04:02:29.885547 #1159] INFO -- : Finished task update in 146.088857261s
I, [2017-01-15T05:00:04.003754 #2356] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-15T05:00:04.007040 #2356] INFO -- : Insert issues
I, [2017-01-15T05:01:27.495600 #2356] INFO -- : Insert comments
I, [2017-01-15T05:01:53.801353 #2356] INFO -- : Insert review comments
I, [2017-01-15T05:02:30.897034 #2356] INFO -- : Finished task update in 147.044321039s
I, [2017-01-15T06:00:04.028367 #3261] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-15T06:00:04.031870 #3261] INFO -- : Insert issues
I, [2017-01-15T06:01:25.776411 #3261] INFO -- : Insert comments
I, [2017-01-15T06:01:52.232915 #3261] INFO -- : Insert review comments
I, [2017-01-15T06:02:28.749603 #3261] INFO -- : Finished task update in 144.875344418s
I, [2017-01-15T07:00:03.974858 #4798] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-15T07:00:03.978048 #4798] INFO -- : Insert issues
I, [2017-01-15T07:01:25.469842 #4798] INFO -- : Insert comments
I, [2017-01-15T07:01:51.917069 #4798] INFO -- : Insert review comments
I, [2017-01-15T07:02:26.403376 #4798] INFO -- : Finished task update in 142.563782574s
I, [2017-01-15T08:00:03.676402 #6043] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-15T08:00:03.679885 #6043] INFO -- : Insert issues
I, [2017-01-15T08:01:25.796080 #6043] INFO -- : Insert comments
I, [2017-01-15T08:01:51.923825 #6043] INFO -- : Insert review comments
I, [2017-01-15T08:02:29.065441 #6043] INFO -- : Finished task update in 145.546320254s
I, [2017-01-15T09:00:03.217715 #7563] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-15T09:00:03.220988 #7563] INFO -- : Insert issues
I, [2017-01-15T09:01:25.504707 #7563] INFO -- : Insert comments
I, [2017-01-15T09:01:51.783965 #7563] INFO -- : Insert review comments
I, [2017-01-15T09:02:28.873834 #7563] INFO -- : Finished task update in 145.832376571s
I, [2017-01-15T10:00:03.945890 #8465] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-15T10:00:03.949202 #8465] INFO -- : Insert issues
I, [2017-01-15T10:01:26.655127 #8465] INFO -- : Insert comments
I, [2017-01-15T10:01:53.297532 #8465] INFO -- : Insert review comments
I, [2017-01-15T10:02:30.417800 #8465] INFO -- : Finished task update in 146.626368559s
I, [2017-01-15T11:00:03.512214 #9445] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-15T11:00:03.515454 #9445] INFO -- : Insert issues
I, [2017-01-15T11:01:27.250960 #9445] INFO -- : Insert comments
I, [2017-01-15T11:01:53.745578 #9445] INFO -- : Insert review comments
I, [2017-01-15T11:02:30.676175 #9445] INFO -- : Finished task update in 147.319104178s
I, [2017-01-15T12:00:03.816590 #10387] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-15T12:00:03.820144 #10387] INFO -- : Insert issues
I, [2017-01-15T12:01:25.187409 #10387] INFO -- : Insert comments
I, [2017-01-15T12:01:51.206178 #10387] INFO -- : Insert review comments
I, [2017-01-15T12:02:29.687067 #10387] INFO -- : Finished task update in 146.026453818s
I, [2017-01-15T13:00:03.825586 #11333] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-15T13:00:03.828874 #11333] INFO -- : Insert issues
I, [2017-01-15T13:01:26.542308 #11333] INFO -- : Insert comments
I, [2017-01-15T13:01:52.675475 #11333] INFO -- : Insert review comments
I, [2017-01-15T13:02:29.317402 #11333] INFO -- : Finished task update in 145.644827298s
I, [2017-01-15T14:00:03.401287 #12204] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-15T14:00:03.404618 #12204] INFO -- : Insert issues
I, [2017-01-15T14:01:25.890253 #12204] INFO -- : Insert comments
I, [2017-01-15T14:01:52.018683 #12204] INFO -- : Insert review comments
I, [2017-01-15T14:02:28.289262 #12204] INFO -- : Finished task update in 145.041775417s
I, [2017-01-15T15:00:03.356888 #13110] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-15T15:00:03.360270 #13110] INFO -- : Insert issues
I, [2017-01-15T15:01:25.334305 #13110] INFO -- : Insert comments
I, [2017-01-15T15:01:51.685975 #13110] INFO -- : Insert review comments
I, [2017-01-15T15:02:27.611109 #13110] INFO -- : Finished task update in 144.387872441s
I, [2017-01-15T16:00:03.798103 #13994] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-15T16:00:03.801362 #13994] INFO -- : Insert issues
I, [2017-01-15T16:01:26.268034 #13994] INFO -- : Insert comments
I, [2017-01-15T16:01:52.542372 #13994] INFO -- : Insert review comments
I, [2017-01-15T16:02:28.160545 #13994] INFO -- : Finished task update in 144.516581613s
I, [2017-01-15T17:00:03.325936 #14900] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-15T17:00:03.329202 #14900] INFO -- : Insert issues
I, [2017-01-15T17:01:25.810048 #14900] INFO -- : Insert comments
I, [2017-01-15T17:01:51.884625 #14900] INFO -- : Insert review comments
I, [2017-01-15T17:02:29.035514 #14900] INFO -- : Finished task update in 145.863000135s
I, [2017-01-15T18:00:03.160030 #15795] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-15T18:00:03.163588 #15795] INFO -- : Insert issues
I, [2017-01-15T18:01:25.196970 #15795] INFO -- : Insert comments
I, [2017-01-15T18:01:51.436426 #15795] INFO -- : Insert review comments
I, [2017-01-15T18:02:27.826929 #15795] INFO -- : Finished task update in 144.824510733s
I, [2017-01-15T19:00:03.955978 #16700] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-15T19:00:03.959457 #16700] INFO -- : Insert issues
I, [2017-01-15T19:01:26.376161 #16700] INFO -- : Insert comments
I, [2017-01-15T19:01:52.557969 #16700] INFO -- : Insert review comments
I, [2017-01-15T19:02:28.506058 #16700] INFO -- : Finished task update in 144.706076909s
I, [2017-01-15T20:00:03.651404 #17560] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-15T20:00:03.654906 #17560] INFO -- : Insert issues
I, [2017-01-15T20:01:25.379309 #17560] INFO -- : Insert comments
I, [2017-01-15T20:01:51.682470 #17560] INFO -- : Insert review comments
I, [2017-01-15T20:02:27.889829 #17560] INFO -- : Finished task update in 144.389696064s
I, [2017-01-15T21:00:04.005100 #18486] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-15T21:00:04.008335 #18486] INFO -- : Insert issues
I, [2017-01-15T21:01:24.515236 #18486] INFO -- : Insert comments
I, [2017-01-15T21:01:50.743401 #18486] INFO -- : Insert review comments
I, [2017-01-15T21:02:24.181702 #18486] INFO -- : Finished task update in 140.331443603s
I, [2017-01-15T22:00:03.345316 #19350] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-15T22:00:03.348915 #19350] INFO -- : Insert issues
I, [2017-01-15T22:01:26.340052 #19350] INFO -- : Insert comments
I, [2017-01-15T22:01:52.689009 #19350] INFO -- : Insert review comments
I, [2017-01-15T22:02:38.474063 #19350] INFO -- : Finished task update in 155.284905545s
I, [2017-01-15T23:00:03.657677 #20275] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-15T23:00:03.661256 #20275] INFO -- : Insert issues
I, [2017-01-15T23:01:28.844505 #20275] INFO -- : Insert comments
I, [2017-01-15T23:01:54.837368 #20275] INFO -- : Insert review comments
I, [2017-01-15T23:02:28.833094 #20275] INFO -- : Finished task update in 145.328400527s
I, [2017-01-16T00:00:03.976390 #21167] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-16T00:00:03.979615 #21167] INFO -- : Insert issues
I, [2017-01-16T00:01:28.532490 #21167] INFO -- : Insert comments
I, [2017-01-16T00:01:54.748377 #21167] INFO -- : Insert review comments
I, [2017-01-16T00:02:29.582143 #21167] INFO -- : Finished task update in 145.759642767s
I, [2017-01-16T01:00:03.777857 #22075] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-16T01:00:03.781033 #22075] INFO -- : Insert issues
I, [2017-01-16T01:01:29.442483 #22075] INFO -- : Insert comments
I, [2017-01-16T01:01:55.660557 #22075] INFO -- : Insert review comments
I, [2017-01-16T01:02:35.167040 #22075] INFO -- : Finished task update in 151.523517838s
I, [2017-01-16T02:00:03.328063 #22970] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-16T02:00:03.331539 #22970] INFO -- : Insert issues
I, [2017-01-16T02:01:28.573312 #22970] INFO -- : Insert comments
I, [2017-01-16T02:01:54.743581 #22970] INFO -- : Insert review comments
I, [2017-01-16T02:02:33.717886 #22970] INFO -- : Finished task update in 150.548398274s
I, [2017-01-16T03:00:03.815670 #23858] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-16T03:00:03.818954 #23858] INFO -- : Insert issues
I, [2017-01-16T03:01:29.979267 #23858] INFO -- : Insert comments
I, [2017-01-16T03:01:55.855801 #23858] INFO -- : Insert review comments
I, [2017-01-16T03:02:31.456896 #23858] INFO -- : Finished task update in 147.795184227s
I, [2017-01-16T04:00:03.616654 #24747] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-16T04:00:03.619901 #24747] INFO -- : Insert issues
I, [2017-01-16T04:01:29.462982 #24747] INFO -- : Insert comments
I, [2017-01-16T04:01:55.667415 #24747] INFO -- : Insert review comments
I, [2017-01-16T04:02:29.862481 #24747] INFO -- : Finished task update in 146.399628925s
I, [2017-01-16T05:00:03.987134 #26289] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-16T05:00:03.990603 #26289] INFO -- : Insert issues
I, [2017-01-16T05:01:29.680164 #26289] INFO -- : Insert comments
I, [2017-01-16T05:01:56.453688 #26289] INFO -- : Insert review comments
I, [2017-01-16T05:02:32.799079 #26289] INFO -- : Finished task update in 148.946470099s
I, [2017-01-16T06:00:03.899420 #27165] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-16T06:00:03.902690 #27165] INFO -- : Insert issues
I, [2017-01-16T06:01:30.230108 #27165] INFO -- : Insert comments
I, [2017-01-16T06:01:56.503629 #27165] INFO -- : Insert review comments
I, [2017-01-16T06:02:33.045677 #27165] INFO -- : Finished task update in 149.297968333s
I, [2017-01-16T07:00:03.261640 #28619] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-16T07:00:03.265166 #28619] INFO -- : Insert issues
I, [2017-01-16T07:01:29.628945 #28619] INFO -- : Insert comments
I, [2017-01-16T07:01:55.890684 #28619] INFO -- : Insert review comments
I, [2017-01-16T07:02:29.625034 #28619] INFO -- : Finished task update in 146.519503639s
I, [2017-01-16T08:00:03.868367 #29821] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-16T08:00:03.871661 #29821] INFO -- : Insert issues
I, [2017-01-16T08:01:29.585026 #29821] INFO -- : Insert comments
I, [2017-01-16T08:01:55.964949 #29821] INFO -- : Insert review comments
I, [2017-01-16T08:02:33.061528 #29821] INFO -- : Finished task update in 149.346828732s
I, [2017-01-16T09:00:03.618437 #321] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-16T09:00:03.622192 #321] INFO -- : Insert issues
I, [2017-01-16T09:01:44.967184 #321] INFO -- : Insert comments
I, [2017-01-16T09:02:13.021655 #321] INFO -- : Insert review comments
I, [2017-01-16T09:02:51.414761 #321] INFO -- : Finished task update in 168.013712369s
I, [2017-01-16T10:00:03.969015 #3590] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-16T10:00:03.972627 #3590] INFO -- : Insert issues
I, [2017-01-16T10:01:34.283895 #3590] INFO -- : Insert comments
I, [2017-01-16T10:02:02.319582 #3590] INFO -- : Insert review comments
I, [2017-01-16T10:02:35.520503 #3937] INFO -- : Begin task insert repository
I, [2017-01-16T10:02:35.520610 #3937] INFO -- : Insert repos
I, [2017-01-16T10:02:41.929193 #3937] INFO -- : Insert users
I, [2017-01-16T10:02:42.662945 #3590] INFO -- : Finished task update in 158.858807652s
I, [2017-01-16T10:02:47.762698 #3937] INFO -- : Insert users
I, [2017-01-16T10:03:54.875252 #4063] INFO -- : Begin task insert repository
I, [2017-01-16T10:03:54.875398 #4063] INFO -- : Insert repos
I, [2017-01-16T10:04:01.320027 #4063] INFO -- : Insert users
I, [2017-01-16T10:04:06.976900 #4063] INFO -- : Insert users
I, [2017-01-16T10:05:12.874387 #4190] INFO -- : Begin task insert repository
I, [2017-01-16T10:05:12.874481 #4190] INFO -- : Insert repos
I, [2017-01-16T10:05:19.230377 #4190] INFO -- : Insert users
I, [2017-01-16T10:05:24.918803 #4190] INFO -- : Insert users
I, [2017-01-16T10:05:43.612741 #4288] INFO -- : Begin task insert repository
I, [2017-01-16T10:05:43.612885 #4288] INFO -- : Insert repos
I, [2017-01-16T10:05:49.833836 #4288] INFO -- : Insert users
I, [2017-01-16T10:05:55.390052 #4288] INFO -- : Insert users
I, [2017-01-16T10:06:58.405486 #4440] INFO -- : Begin task insert repository
I, [2017-01-16T10:06:58.405582 #4440] INFO -- : Insert repos
I, [2017-01-16T10:07:05.028960 #4440] INFO -- : Insert users
I, [2017-01-16T10:07:10.543643 #4440] INFO -- : Insert users
I, [2017-01-16T10:07:15.630752 #4440] INFO -- : Finished task insert repository
I, [2017-01-16T10:45:28.550201 #29380] INFO -- : Begin task update socialtools
I, [2017-01-16T10:45:28.550490 #29380] INFO -- : Insert issues
I, [2017-01-16T10:45:42.019727 #29380] INFO -- : Insert comments
I, [2017-01-16T10:45:46.587796 #29380] INFO -- : Insert review comments
I, [2017-01-16T10:45:52.995433 #29380] INFO -- : Finished task update in 24.445229791s
I, [2017-01-16T11:00:03.919100 #7577] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-16T11:00:03.922456 #7577] INFO -- : Insert issues
I, [2017-01-16T11:01:35.723480 #7577] INFO -- : Insert comments
I, [2017-01-16T11:02:09.693265 #7577] INFO -- : Insert review comments
I, [2017-01-16T11:02:48.861359 #7577] INFO -- : Finished task update in 165.10003114s
I, [2017-01-16T11:24:26.679548 #29380] INFO -- : Begin task update ir.zigexn.co.jp
I, [2017-01-16T11:24:26.679887 #29380] INFO -- : Insert issues
I, [2017-01-16T11:24:36.604881 #29380] INFO -- : Insert comments
I, [2017-01-16T11:24:40.150436 #29380] INFO -- : Insert review comments
I, [2017-01-16T11:24:47.502592 #29380] INFO -- : Finished task update in 20.823043709s
I, [2017-01-16T12:00:04.015618 #10206] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-16T12:00:04.019145 #10206] INFO -- : Insert issues
I, [2017-01-16T12:01:37.769201 #10206] INFO -- : Insert comments
I, [2017-01-16T12:02:05.337304 #10206] INFO -- : Insert review comments
I, [2017-01-16T12:02:43.348557 #10206] INFO -- : Finished task update in 159.484172458s
I, [2017-01-16T13:00:03.496118 #12591] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-16T13:00:03.499540 #12591] INFO -- : Insert issues
I, [2017-01-16T13:01:39.742697 #12591] INFO -- : Insert comments
I, [2017-01-16T13:02:07.781473 #12591] INFO -- : Insert review comments
I, [2017-01-16T14:00:03.913898 #16144] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-16T14:00:03.917237 #16144] INFO -- : Insert issues
I, [2017-01-16T14:01:36.051560 #16144] INFO -- : Insert comments
I, [2017-01-16T14:02:04.438420 #16144] INFO -- : Insert review comments
I, [2017-01-16T15:00:03.879164 #19879] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-16T15:00:03.882494 #19879] INFO -- : Insert issues
I, [2017-01-16T15:01:33.984871 #19879] INFO -- : Insert comments
I, [2017-01-16T15:02:02.064480 #19879] INFO -- : Insert review comments
I, [2017-01-16T16:00:04.288867 #23576] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-16T16:00:04.294197 #23576] INFO -- : Insert issues
I, [2017-01-16T16:01:31.483176 #23576] INFO -- : Insert comments
I, [2017-01-16T16:02:00.474309 #23576] INFO -- : Insert review comments
I, [2017-01-16T17:00:06.030282 #26047] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-16T17:00:06.033799 #26047] INFO -- : Insert issues
I, [2017-01-16T17:01:39.897057 #26047] INFO -- : Insert comments
I, [2017-01-16T17:02:08.363973 #26047] INFO -- : Insert review comments
I, [2017-01-16T18:00:03.911847 #30617] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-16T18:00:03.915170 #30617] INFO -- : Insert issues
I, [2017-01-16T18:01:37.031272 #30617] INFO -- : Insert comments
I, [2017-01-16T18:02:05.516208 #30617] INFO -- : Insert review comments
I, [2017-01-16T19:00:03.359356 #31894] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-16T19:00:03.362898 #31894] INFO -- : Insert issues
I, [2017-01-16T19:01:36.362829 #31894] INFO -- : Insert comments
I, [2017-01-16T19:02:04.602811 #31894] INFO -- : Insert review comments
I, [2017-01-16T20:00:03.394433 #565] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-16T20:00:03.397697 #565] INFO -- : Insert issues
I, [2017-01-16T20:01:36.704626 #565] INFO -- : Insert comments
I, [2017-01-16T20:02:04.957550 #565] INFO -- : Insert review comments
I, [2017-01-16T21:00:03.508057 #1572] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-16T21:00:03.518687 #1572] INFO -- : Insert issues
I, [2017-01-16T21:01:35.917430 #1572] INFO -- : Insert comments
I, [2017-01-16T21:02:03.847868 #1572] INFO -- : Insert review comments
I, [2017-01-16T22:00:03.564729 #2725] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-16T22:00:03.568038 #2725] INFO -- : Insert issues
I, [2017-01-16T22:01:36.170284 #2725] INFO -- : Insert comments
I, [2017-01-16T22:02:04.699179 #2725] INFO -- : Insert review comments
I, [2017-01-16T23:00:03.845728 #3675] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-16T23:00:03.849069 #3675] INFO -- : Insert issues
I, [2017-01-16T23:01:44.790132 #3675] INFO -- : Insert comments
I, [2017-01-16T23:02:18.137279 #3675] INFO -- : Insert review comments
I, [2017-01-17T00:00:03.091680 #4600] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-17T00:00:03.094947 #4600] INFO -- : Insert issues
I, [2017-01-17T00:01:38.388370 #4600] INFO -- : Insert comments
I, [2017-01-17T00:02:09.768285 #4600] INFO -- : Insert review comments
I, [2017-01-17T01:00:03.401028 #6143] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-17T01:00:03.404604 #6143] INFO -- : Insert issues
I, [2017-01-17T01:01:35.261512 #6143] INFO -- : Insert comments
I, [2017-01-17T01:02:05.020121 #6143] INFO -- : Insert review comments
I, [2017-01-17T02:00:03.541127 #7043] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-17T02:00:03.544297 #7043] INFO -- : Insert issues
I, [2017-01-17T02:01:38.394410 #7043] INFO -- : Insert comments
I, [2017-01-17T02:02:07.687370 #7043] INFO -- : Insert review comments
I, [2017-01-17T03:00:03.177838 #7935] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-17T03:00:03.181039 #7935] INFO -- : Insert issues
I, [2017-01-17T03:01:35.842716 #7935] INFO -- : Insert comments
I, [2017-01-17T03:02:05.315586 #7935] INFO -- : Insert review comments
I, [2017-01-17T04:00:03.278912 #8808] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-17T04:00:03.282459 #8808] INFO -- : Insert issues
I, [2017-01-17T04:01:38.746062 #8808] INFO -- : Insert comments
I, [2017-01-17T04:02:08.377352 #8808] INFO -- : Insert review comments
I, [2017-01-17T05:00:03.167007 #9846] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-17T05:00:03.170388 #9846] INFO -- : Insert issues
I, [2017-01-17T05:01:38.065194 #9846] INFO -- : Insert comments
I, [2017-01-17T05:02:07.761569 #9846] INFO -- : Insert review comments
I, [2017-01-17T06:00:03.543817 #10751] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-17T06:00:03.547362 #10751] INFO -- : Insert issues
I, [2017-01-17T06:01:36.179528 #10751] INFO -- : Insert comments
I, [2017-01-17T06:02:05.361973 #10751] INFO -- : Insert review comments
I, [2017-01-17T07:00:03.239723 #12254] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-17T07:00:03.242887 #12254] INFO -- : Insert issues
I, [2017-01-17T07:01:35.822359 #12254] INFO -- : Insert comments
I, [2017-01-17T07:02:04.889589 #12254] INFO -- : Insert review comments
I, [2017-01-17T08:00:03.648914 #13512] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-17T08:00:03.652182 #13512] INFO -- : Insert issues
I, [2017-01-17T08:01:37.098025 #13512] INFO -- : Insert comments
I, [2017-01-17T08:02:06.459081 #13512] INFO -- : Insert review comments
I, [2017-01-17T09:00:10.953557 #16677] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-17T09:00:10.996644 #16677] INFO -- : Insert issues
I, [2017-01-17T09:01:48.675065 #16677] INFO -- : Insert comments
I, [2017-01-17T09:02:18.420891 #16677] INFO -- : Insert review comments
I, [2017-01-17T10:00:04.094974 #20604] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-17T10:00:04.098310 #20604] INFO -- : Insert issues
I, [2017-01-17T10:01:38.114969 #20604] INFO -- : Insert comments
I, [2017-01-17T10:02:07.466617 #20604] INFO -- : Insert review comments
I, [2017-01-17T11:00:03.785973 #24697] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-17T11:00:03.789562 #24697] INFO -- : Insert issues
I, [2017-01-17T11:01:38.268196 #24697] INFO -- : Insert comments
I, [2017-01-17T11:02:07.374390 #24697] INFO -- : Insert review comments
I, [2017-01-17T12:00:03.930957 #27573] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-17T12:00:03.934341 #27573] INFO -- : Insert issues
I, [2017-01-17T12:01:35.989472 #27573] INFO -- : Insert comments
I, [2017-01-17T12:02:05.099165 #27573] INFO -- : Insert review comments
I, [2017-01-17T12:56:35.378796 #29425] INFO -- : Begin task update usedcar_v2
I, [2017-01-17T12:56:35.379136 #29425] INFO -- : Insert issues
I, [2017-01-17T13:00:03.908726 #29533] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2"]
I, [2017-01-17T13:00:03.911958 #29533] INFO -- : Insert issues
I, [2017-01-17T13:01:38.506312 #29533] INFO -- : Insert comments
I, [2017-01-17T13:02:07.512303 #29533] INFO -- : Insert review comments
I, [2017-01-17T13:07:49.861753 #29425] INFO -- : Begin task update smocca_v3
I, [2017-01-17T13:07:49.862005 #29425] INFO -- : Insert issues
I, [2017-01-17T13:07:55.209553 #29425] INFO -- : Insert comments
I, [2017-01-17T13:07:59.146606 #29425] INFO -- : Insert review comments
I, [2017-01-17T13:08:36.359288 #29425] INFO -- : Begin task update socialtools
I, [2017-01-17T13:08:36.359699 #29425] INFO -- : Insert issues
I, [2017-01-17T13:08:49.790933 #29425] INFO -- : Insert comments
I, [2017-01-17T13:08:54.899946 #29425] INFO -- : Insert review comments
I, [2017-01-17T13:10:35.954261 #29425] INFO -- : Begin task update usedcar_v2
I, [2017-01-17T13:10:35.954475 #29425] INFO -- : Insert issues
I, [2017-01-17T13:11:24.884963 #29425] INFO -- : Begin task update usedcar_v2
I, [2017-01-17T13:11:24.885418 #29425] INFO -- : Insert issues
I, [2017-01-17T13:19:03.417222 #29425] INFO -- : Begin task update usedcar_v2
I, [2017-01-17T13:19:03.417445 #29425] INFO -- : Insert issues
I, [2017-01-17T13:19:44.749907 #29425] INFO -- : Insert comments
I, [2017-01-17T13:19:50.056408 #29425] INFO -- : Insert review comments
I, [2017-01-17T13:20:09.059168 #29425] INFO -- : Finished task update in 65.641943649s
I, [2017-01-17T13:20:19.597505 #29425] INFO -- : Begin task update usedcar_api
I, [2017-01-17T13:20:19.597794 #29425] INFO -- : Insert issues
I, [2017-01-17T13:21:48.286100 #29425] INFO -- : Begin task update usedcar_api
I, [2017-01-17T13:21:48.286339 #29425] INFO -- : Insert issues
I, [2017-01-17T13:22:13.397675 #29425] INFO -- : Insert comments
I, [2017-01-17T13:22:16.030494 #29425] INFO -- : Insert review comments
I, [2017-01-17T13:22:35.561545 #29425] INFO -- : Finished task update in 47.275443942s
I, [2017-01-17T13:23:23.237370 #29425] INFO -- : Begin task update minden.jp
I, [2017-01-17T13:23:23.237752 #29425] INFO -- : Insert issues
I, [2017-01-17T13:23:34.895997 #29425] INFO -- : Insert comments
I, [2017-01-17T13:23:48.647509 #29425] INFO -- : Insert review comments
I, [2017-01-17T13:23:56.083942 #29425] INFO -- : Finished task update in 32.846574222s
I, [2017-01-17T13:24:09.228753 #29425] INFO -- : Begin task update foodswho3
I, [2017-01-17T13:24:09.229161 #29425] INFO -- : Insert issues
I, [2017-01-17T13:27:14.167479 #29425] INFO -- : Begin task update arubaito_v2
I, [2017-01-17T13:27:14.167744 #29425] INFO -- : Insert issues
I, [2017-01-17T13:27:26.918412 #29425] INFO -- : Insert comments
I, [2017-01-17T13:27:33.717891 #29425] INFO -- : Insert review comments
I, [2017-01-17T13:27:54.383024 #29425] INFO -- : Finished task update in 40.215542695s
I, [2017-01-17T13:28:09.689544 #29425] INFO -- : Begin task update kuruma-ex
I, [2017-01-17T13:28:09.689812 #29425] INFO -- : Insert issues
I, [2017-01-17T13:28:50.643518 #29425] INFO -- : Insert comments
I, [2017-01-17T13:28:55.989497 #29425] INFO -- : Insert review comments
I, [2017-01-17T13:29:08.073829 #29425] INFO -- : Finished task update in 58.384285901s
I, [2017-01-17T13:29:28.286203 #29425] INFO -- : Begin task update arubaito_ios
I, [2017-01-17T13:29:28.286438 #29425] INFO -- : Insert issues
I, [2017-01-17T13:29:47.768891 #29425] INFO -- : Insert comments
I, [2017-01-17T13:29:57.255449 #29425] INFO -- : Insert review comments
I, [2017-01-17T13:30:08.230620 #29425] INFO -- : Finished task update in 39.944415845s
I, [2017-01-17T13:30:20.357095 #29425] INFO -- : Begin task update arubaito_ios
I, [2017-01-17T13:30:20.357429 #29425] INFO -- : Insert issues
I, [2017-01-17T13:30:36.278003 #29425] INFO -- : Insert comments
I, [2017-01-17T13:30:45.586638 #29425] INFO -- : Insert review comments
I, [2017-01-17T13:30:56.056860 #29425] INFO -- : Finished task update in 35.699766765s
I, [2017-01-17T13:31:03.438857 #29425] INFO -- : Begin task update ryokou_ios
I, [2017-01-17T13:31:03.439082 #29425] INFO -- : Insert issues
I, [2017-01-17T13:31:06.457917 #29425] INFO -- : Insert comments
I, [2017-01-17T13:31:08.778493 #29425] INFO -- : Insert review comments
I, [2017-01-17T13:31:15.920473 #29425] INFO -- : Finished task update in 12.481607973s
I, [2017-01-17T13:31:40.081490 #29425] INFO -- : Begin task update haken_v2
I, [2017-01-17T13:31:40.081717 #29425] INFO -- : Insert issues
I, [2017-01-17T13:50:35.644106 #29425] INFO -- : Begin task update usedcar_v2
I, [2017-01-17T13:50:35.644346 #29425] INFO -- : Insert issues
I, [2017-01-17T13:51:11.140854 #29425] INFO -- : Insert comments
I, [2017-01-17T13:51:16.620633 #29425] INFO -- : Insert review comments
I, [2017-01-17T13:51:38.038812 #29425] INFO -- : Finished task update in 62.394706099s
I, [2017-01-17T14:00:03.488521 #2028] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2", "usedcar_v2", "usedcar_api"]
I, [2017-01-17T14:00:03.492300 #2028] INFO -- : Insert issues
I, [2017-01-17T14:02:49.824019 #2028] INFO -- : Insert comments
I, [2017-01-17T14:03:27.269546 #2028] INFO -- : Insert review comments
I, [2017-01-17T14:04:27.822746 #2028] INFO -- : Finished task update in 264.506809747s
I, [2017-01-17T14:58:01.345954 #29425] INFO -- : Begin task update kangokyujin-ex
I, [2017-01-17T14:58:01.346345 #29425] INFO -- : Insert issues
I, [2017-01-17T14:58:28.127644 #29425] INFO -- : Insert comments
I, [2017-01-17T14:58:33.502608 #29425] INFO -- : Insert review comments
I, [2017-01-17T14:58:51.813173 #29425] INFO -- : Finished task update in 50.467220722s
I, [2017-01-17T15:00:04.280359 #7241] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2", "usedcar_v2", "usedcar_api"]
I, [2017-01-17T15:00:04.283657 #7241] INFO -- : Insert issues
I, [2017-01-17T15:02:57.143422 #7241] INFO -- : Insert comments
I, [2017-01-17T15:03:34.130854 #7241] INFO -- : Insert review comments
I, [2017-01-17T15:04:37.364050 #7241] INFO -- : Finished task update in 273.259396066s
I, [2017-01-17T16:00:03.573078 #10342] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2", "usedcar_v2", "usedcar_api"]
I, [2017-01-17T16:00:03.576394 #10342] INFO -- : Insert issues
I, [2017-01-17T16:02:47.474034 #10342] INFO -- : Insert comments
I, [2017-01-17T16:03:25.206957 #10342] INFO -- : Insert review comments
I, [2017-01-17T16:04:27.355233 #10342] INFO -- : Finished task update in 263.933282255s
I, [2017-01-17T17:00:03.537262 #14266] INFO -- : Begin task update ["socialtools", "arubaito-ex", "kuruma-ex", "arubaito_v2", "usedcar_v2", "usedcar_api"]
I, [2017-01-17T17:00:03.540697 #14266] INFO -- : Insert issues
I, [2017-01-17T17:02:52.819647 #14266] INFO -- : Insert comments
I, [2017-01-17T17:03:30.814259 #14266] INFO -- : Insert review comments
I, [2017-01-17T17:04:38.330120 #14266] INFO -- : Finished task update in 274.957304648s
......@@ -86,6 +86,31 @@ class GithubLoader
db_user.save
end
end
insert_teams(client)
end
def insert_teams(client)
$logger.info "Insert users"
teams = client.organization_teams($org)
teams.each do |team|
if team.slug == "ventura-developers"
members = client.team_members(team.id)
last_page = 1
unless client.last_response.headers[:link].nil?
last_page = client.last_response.headers[:link].split(' ')[2][-3].to_i
end
# byebug
for i in (1..last_page)
members = client.team_members(team.id, {page: i})
members.each do |member|
db_member = User.find_by(id: member.id)
db_member.team_ventura = true
db_member.save
end
end
end
end
end
def insert_issues(client, db_repos)
......@@ -154,8 +179,12 @@ class GithubLoader
new_timeline(db_issue.id, new_label.name)
elsif !old_label.nil? and new_label.nil?
timeline = Timeline.where(issue_id: db_issue.id, label: old_label.name).last
timeline.end_time = Time.now
timeline.save
begin
timeline.end_time = Time.now
timeline.save
rescue
# ignore this case for first time insert
end
end
else # both old_label and new label is not nil
if new_label.name != old_label.name
......@@ -278,7 +307,7 @@ class GithubLoader
unless issue_number.nil?
issue = issues.where(repository_id: pull.repository_id).find_by(number: issue_number.to_s[1..-1])
pull.issue = issue
puts pull.save
# puts pull.save
end
end
end
......
......@@ -38,19 +38,9 @@ namespace :github do
task insert_repo_only: :environment do
loader = GithubLoader.new
$logger.info "Begin task insert repository"
list_db_repo = loader.insert_repos($client)
# list_db_user = loader.insert_users($client)
list_db_label = loader.insert_labels($client, list_db_repo)
ActiveRecord::Base.transaction do
list_db_repo.each do |db_repo|
db_repo.save
end
list_db_label.each do |db_label|
db_label.save
end
end
loader.insert_repos($client)
loader.insert_users($client)
# loader.insert_labels($client)
$logger.info "Finished task insert repository"
end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment