Skip to content

Commit

Permalink
Changing specVersion strings
Browse files Browse the repository at this point in the history
  • Loading branch information
ldecheverz-split committed May 6, 2024
1 parent a1d87c7 commit ea875c9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion splitio/admin/views/dashboard/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const main = `
{{template "SplitLogo" .}}
</div>
<div class="pull-right" style="text-align: center; padding-right: 10px;">
<p style="padding-top: 8px; color: white; margin: 0px; font-weight: bold; text-align: right"><span>{{.Version}}</span> | s=<span>{{.SpecVersion}}</span></p>
<p style="padding-top: 8px; color: white; margin: 0px; font-weight: bold; text-align: right"><span>{{.Version}}</span> | Flag Spec: <span>{{.SpecVersion}}</span></p>
<p class="navbar-text navbar-right" style="padding-top: 0px;margin-bottom: 15px;margin-top: 0px;color:white;min-width: 175px;height: 10px;">
<a href="#" onclick="javascript:sendSignal('graceful'); return false;" class="navbar-link">
<span class="label label-success">Graceful stop</span>
Expand Down
2 changes: 1 addition & 1 deletion splitio/commitversion.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ This file is created automatically, please do not edit
*/

// CommitVersion is the version of the last commit previous to release
const CommitVersion = "00c9951"
const CommitVersion = "a1d87c7"
2 changes: 1 addition & 1 deletion splitio/producer/conf/sections.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type Main struct {
Integrations conf.Integrations `json:"integrations" s-nested:"true"`
Logging conf.Logging `json:"logging" s-nested:"true"`
Healthcheck Healthcheck `json:"healthcheck" s-nested:"true"`
SpecVersion string `json:"specVersion" s-cli:"spec-version" s-def:"1.1" s-desc:"Spec version for flags"`
SpecVersion string `json:"flagSpecVersion" s-cli:"flag-spec-version" s-def:"1.1" s-desc:"Spec version for flags"`
}

// BuildAdvancedConfig generates a commons-compatible advancedconfig with default + overriden parameters
Expand Down
2 changes: 1 addition & 1 deletion splitio/proxy/conf/sections.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type Main struct {
Logging conf.Logging `json:"logging" s-nested:"true"`
Healthcheck Healthcheck `json:"healthcheck" s-nested:"true"`
Observability Observability `json:"observability" s-nested:"true"`
SpecVersion string `json:"specVersion" s-cli:"spec-version" s-def:"1.1" s-desc:"Spec version for flags"`
SpecVersion string `json:"flagSpecVersion" s-cli:"flag-spec-version" s-def:"1.1" s-desc:"Spec version for flags"`
}

// BuildAdvancedConfig generates a commons-compatible advancedconfig with default + overriden parameters
Expand Down

0 comments on commit ea875c9

Please sign in to comment.