Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SYSE-294] Standardise build time variables #347

Merged
merged 1 commit into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var AuthConfigStore tap.AuthRegisterBackend
// IdentityKeyStore keeps a record of identities tied to tokens (if needed)
var IdentityKeyStore tap.AuthRegisterBackend

// config is the system-wide configuration
// config is the system-wide configuration
var config configuration.Configuration

// TykAPIHandler is a global API handler for Tyk, wraps the tyk APi in Go functions
Expand All @@ -39,7 +39,7 @@ var mainLogger = log.WithField("prefix", "MAIN")
var ProfileFilename, confFile string

func init() {
mainLogger.Info("Tyk Identity Broker ", VERSION)
mainLogger.Info("Tyk Identity Broker ", Version)
mainLogger.Info("Copyright Tyk Technologies Ltd 2020")

flag.StringVar(&confFile, "conf", "tib.conf", "Path to the config file")
Expand Down
3 changes: 2 additions & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
package main

var VERSION = "v1.4.3"
var Version = "v1.4.3"
var Commit, BuildDate, BuildTime string
Loading