Skip to content

Commit

Permalink
v0.20
Browse files Browse the repository at this point in the history
  • Loading branch information
LeKovr committed Nov 15, 2017
1 parent 043b422 commit 57fe832
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ See [docker-compose.yml](docker-compose.yml) for usage example.
## Note about gorilla/websocket

Not choosen because [Connections support one concurrent reader and one concurrent writer](https://godoc.org/github.com/gorilla/websocket).
But we need two writers (one for tail and one for command responses)
But we need two writers (one for tail and one for command responses). May be we join these writers in future.

## TODO

Expand Down
2 changes: 1 addition & 1 deletion cmd/webtail/bindata.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions cmd/webtail/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
"github.com/jessevdk/go-flags"

"github.com/LeKovr/go-base/log"
"github.com/LeKovr/webtail/manager"
"github.com/LeKovr/webtail/api"
"github.com/LeKovr/webtail/manager"
)

// -----------------------------------------------------------------------------
Expand All @@ -40,7 +40,7 @@ func main() {

cfg, lg := setUp()
lg.Printf("info: %s v %s. WebTail, tail logfiles via web", path.Base(os.Args[0]), Version)
lg.Print("info: Copyright (C) 2016, Alexey Kovrizhkin <[email protected]>")
lg.Print("info: Copyright (C) 2016-2017, Alexey Kovrizhkin <[email protected]>")

_, err := os.Stat(cfg.Tail.Root)
panicIfError(lg, err, "Logfile root dir")
Expand Down
2 changes: 1 addition & 1 deletion cmd/webtail/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
// App version variables

// Version set in source code
const Version = "0.12"
const Version = "0.20"

// Build time filled by make on program build
var Build string
Expand Down

0 comments on commit 57fe832

Please sign in to comment.