Skip to content

Commit

Permalink
fix: Disable compression for exporting MiniSEED in history service
Browse files Browse the repository at this point in the history
  • Loading branch information
bclswl0827 committed Dec 26, 2024
1 parent 4a6c0b1 commit f1e76b8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

Starting from v2.2.5, all notable changes to this project will be documented in this file.

## v3.6.1

## Bug Fixes

- Disable waveform normalization completely.
- Disable compression for exporting MiniSEED in history service.

## v3.6.0

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v3.6.0
v3.6.1
2 changes: 1 addition & 1 deletion server/endpoints/v1/history/miniseed.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

func (h *History) handleMiniSEED(data []explorer.ExplorerData, stationCode, networkCode, locationCode, channelPrefix, channelCode string) (fileName string, dataBytes []byte, err error) {
var miniseed mseedio.MiniSeedData
err = miniseed.Init(mseedio.STEIM2, mseedio.MSBFIRST)
err = miniseed.Init(mseedio.INT32, mseedio.MSBFIRST)
if err != nil {
return "", nil, err
}
Expand Down

0 comments on commit f1e76b8

Please sign in to comment.