Minor cleanup & gitignore update (#5144)

This commit is contained in:
Varun Upadhyay 2023-12-28 20:25:43 -08:00 committed by GitHub
parent 183352c796
commit 77626666c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 6 deletions

3
.gitignore vendored
View file

@ -89,3 +89,6 @@ other/java/hdfs/dependency-reduced-pom.xml
weed/weed
weed/mq/client/cmd/weed_pub/weed_pub
docker/weed
# test generated files
weed/*/*.jpg

View file

@ -3,20 +3,19 @@ package main
import (
"embed"
"fmt"
weed_server "github.com/seaweedfs/seaweedfs/weed/server"
"github.com/seaweedfs/seaweedfs/weed/util"
flag "github.com/seaweedfs/seaweedfs/weed/util/fla9"
"io"
"io/fs"
"math/rand"
"os"
"strings"
"sync"
"text/template"
"time"
"unicode"
"unicode/utf8"
weed_server "github.com/seaweedfs/seaweedfs/weed/server"
"github.com/seaweedfs/seaweedfs/weed/util"
flag "github.com/seaweedfs/seaweedfs/weed/util/fla9"
"github.com/seaweedfs/seaweedfs/weed/command"
"github.com/seaweedfs/seaweedfs/weed/glog"
)
@ -48,7 +47,6 @@ func init() {
func main() {
glog.MaxSize = 1024 * 1024 * 10
glog.MaxFileCount = 5
rand.Seed(time.Now().UnixNano())
flag.Usage = usage
if command.AutocompleteMain(commands) {