fix version info

This commit is contained in:
Willy Kloucek
2022-06-13 10:43:52 +02:00
parent 588293fd19
commit 68a6f43538
93 changed files with 112 additions and 102 deletions
@@ -16,7 +16,7 @@ func Server(opts ...Option) (*http.Server, error) {
return debug.NewService(
debug.Logger(options.Logger),
debug.Name(options.Config.Service.Name),
debug.Version(version.String),
debug.Version(version.GetString()),
debug.Address(options.Config.Debug.Addr),
debug.Token(options.Config.Debug.Token),
debug.Pprof(options.Config.Debug.Pprof),
@@ -17,7 +17,7 @@ func Server(opts ...Option) (http.Service, error) {
http.Logger(options.Logger),
http.Namespace(options.Namespace),
http.Name("graph-explorer"),
http.Version(version.String),
http.Version(version.GetString()),
http.Address(options.Config.HTTP.Addr),
http.Context(options.Context),
http.Flags(options.Flags...),
@@ -33,7 +33,7 @@ func Server(opts ...Option) (http.Service, error) {
middleware.Secure,
middleware.Version(
"graph-explorer",
version.String,
version.GetString(),
),
middleware.Logger(
options.Logger,