Commit 33cd3ed8 authored by steven's avatar steven

chore: bump version

parent a09c6698
...@@ -106,7 +106,7 @@ func (s *Server) Start(ctx context.Context) error { ...@@ -106,7 +106,7 @@ func (s *Server) Start(ctx context.Context) error {
} }
}() }()
go func() { go func() {
httpListener := muxServer.Match(cmux.HTTP1Fast()) httpListener := muxServer.Match(cmux.HTTP1Fast(http.MethodPatch))
s.echoServer.Listener = httpListener s.echoServer.Listener = httpListener
if err := s.echoServer.Start(address); err != nil { if err := s.echoServer.Start(address); err != nil {
slog.Error("failed to start echo server", err) slog.Error("failed to start echo server", err)
......
...@@ -9,10 +9,10 @@ import ( ...@@ -9,10 +9,10 @@ import (
// Version is the service current released version. // Version is the service current released version.
// Semantic versioning: https://semver.org/ // Semantic versioning: https://semver.org/
var Version = "0.22.2" var Version = "0.22.3"
// DevVersion is the service current development version. // DevVersion is the service current development version.
var DevVersion = "0.22.2" var DevVersion = "0.22.3"
func GetCurrentVersion(mode string) string { func GetCurrentVersion(mode string) string {
if mode == "dev" || mode == "demo" { if mode == "dev" || mode == "demo" {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment