aboutsummaryrefslogtreecommitdiff
path: root/unmaintained/see_dat/see_dat.go
diff options
context:
space:
mode:
authorChris Lu <chrislusf@users.noreply.github.com>2019-09-28 23:34:05 -0700
committerGitHub <noreply@github.com>2019-09-28 23:34:05 -0700
commit1bb4449e5e14d15af274a27ad4b18302ca91675b (patch)
tree90c850277dd5ab530aae9baaf644d99bc779244c /unmaintained/see_dat/see_dat.go
parent972e881d485a1a5b4587f47ef55bbbf5182837f7 (diff)
parent3cc084269c47d72df463760445920b45819e9feb (diff)
downloadseaweedfs-1bb4449e5e14d15af274a27ad4b18302ca91675b.tar.xz
seaweedfs-1bb4449e5e14d15af274a27ad4b18302ca91675b.zip
Merge pull request #1076 from iliul/fix-lookup-statuscode
master api: return http 404 when volumeId not exist
Diffstat (limited to 'unmaintained/see_dat/see_dat.go')
-rw-r--r--unmaintained/see_dat/see_dat.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/unmaintained/see_dat/see_dat.go b/unmaintained/see_dat/see_dat.go
index e8e54fd4f..e07704fc6 100644
--- a/unmaintained/see_dat/see_dat.go
+++ b/unmaintained/see_dat/see_dat.go
@@ -2,12 +2,11 @@ package main
import (
"flag"
+ "time"
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/storage"
"github.com/chrislusf/seaweedfs/weed/storage/needle"
-
- "time"
)
var (
@@ -45,5 +44,4 @@ func main() {
if err != nil {
glog.Fatalf("Reading Volume File [ERROR] %s\n", err)
}
-
}