Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
dsmith3197 committed Sep 22, 2023
1 parent 02e31e2 commit 129234e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/sources/docker_logs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ use crate::{
DockerLogsCommunicationError, DockerLogsContainerEventReceived,
DockerLogsContainerMetadataFetchError, DockerLogsContainerUnwatch,
DockerLogsContainerWatch, DockerLogsEventsReceived,
DockerLogsLoggingDriverUnsupportedError, DockerLogsReceivedOutOfOrderError,
DockerLogsTimestampParseError, StreamClosedError,
DockerLogsLoggingDriverUnsupportedError, DockerLogsTimestampParseError, StreamClosedError,
},
line_agg::{self, LineAgg},
shutdown::ShutdownSignal,
Expand Down Expand Up @@ -995,7 +994,7 @@ impl ContainerLogInfo {
let timestamp = match DateTime::parse_from_rfc3339(timestamp_str) {
Ok(timestamp) => {
// Timestamp check. This is included to avoid processing the same log multiple times, which can
// occur when a container changes generations, and to avoid processing logs with timestamps before
// occur when a container changes generations, and to avoid processing logs with timestamps before
// the created timestamp.
match self.last_log.as_ref() {
Some(&(last, gen)) => {
Expand Down

0 comments on commit 129234e

Please sign in to comment.