Skip to content

Commit

Permalink
Merge branch 'hotfix/2.15.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
vmalloc committed Jan 3, 2019
2 parents b3d0010 + b44b296 commit de4ea9f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 0 additions & 2 deletions api-server/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ use actix::prelude::*;
use actix_web::{server, App};
use env_logger::Builder;
use log::info;
use sentry_actix::SentryMiddleware;
use state::AppState;
use stats::StatsCollector;
use std::env;
Expand Down Expand Up @@ -55,7 +54,6 @@ fn main() {

let server = server::new(move || {
App::with_state(AppState::init(stats_collector.clone()))
.middleware(SentryMiddleware::new())
.resource("/metrics/request", |r| {
r.post().with(stats::update);
})
Expand Down
1 change: 1 addition & 0 deletions flask_app/tasks/replications.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ def _get_tests_to_replicate_query(replica, bulk_size=200):
).label('test'),
select([func.array_agg(
func.json_build_object(
'timestamp', models.Error.timestamp,
'message', models.Error.message)
)]).where(models.Error.test_id == models.Test.id).label('errors'),
select([
Expand Down

0 comments on commit de4ea9f

Please sign in to comment.