Skip to content

Commit

Permalink
Post merge
Browse files Browse the repository at this point in the history
  • Loading branch information
samuchila committed Jan 29, 2024
1 parent f6270fa commit ba75ec0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions api/src/apps/routes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ async fn logs<'r>(
};

let log_chunk = apps
.get_logs(&app_name, service_name, &since, limit)
.get_logs(&app_name, service_name, &since, &limit)
.await?;

Ok(LogsResponse {
Expand Down Expand Up @@ -314,7 +314,7 @@ fn map_join_error(err: tokio::task::JoinError) -> HttpApiError {
pub struct LogsResponse<'a> {
log_chunk: Option<LogChunk>,
app_name: AppName,
service_name: String,
service_name: &'a str,
limit: Option<usize>,
}

Expand Down
2 changes: 1 addition & 1 deletion api/src/infrastructure/kubernetes/infrastructure.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ use failure::Error;
use futures::stream::BoxStream;
use futures::stream::FuturesUnordered;
use futures::StreamExt;
use futures::{AsyncBufReadExt, StreamExt, TryStreamExt};
use futures::{AsyncBufReadExt, TryStreamExt};
use k8s_openapi::api::core::v1::PersistentVolumeClaim;
use k8s_openapi::api::storage::v1::StorageClass;
use k8s_openapi::api::{
Expand Down

0 comments on commit ba75ec0

Please sign in to comment.