Skip to content

Commit

Permalink
add warning about issue #169
Browse files Browse the repository at this point in the history
  • Loading branch information
kkappler committed Dec 15, 2023
1 parent e49b903 commit 28c7495
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions mth5/timeseries/run_ts.py
Original file line number Diff line number Diff line change
Expand Up @@ -925,6 +925,9 @@ def from_obspy_stream(self, obspy_stream, run_metadata=None):
self.logger.warn(msg)
self.station_metadata.fdsn.id = station

if len(run_metadata.channels) != len(array_list):
msg = f"Possible Leap Second Bug -- see issue #169"
self.logger.warning(msg)
self.set_dataset(array_list)

# need to be sure update any input metadata.
Expand Down

0 comments on commit 28c7495

Please sign in to comment.