Skip to content

Commit

Permalink
Fixing crash on startup
Browse files Browse the repository at this point in the history
  • Loading branch information
svaroqui committed Dec 21, 2024
1 parent 1576752 commit 77a3926
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -868,7 +868,7 @@ func (repman *ReplicationManager) AddFlags(flags *pflag.FlagSet, conf *config.Co
flags.StringVar(&conf.Cloud18CostCurrency, "cloud18-cost-currency", "", "Cost currency")
flags.StringVar(&conf.Cloud18DbOps, "cloud18-dbops", "", "Email for infrastucure dba")
flags.StringVar(&conf.Cloud18ExternalDbOps, "cloud18-external-dbops", "", "Email for external partner dba")
flags.StringVar(&conf.Cloud18ExternalSysOps, "cloud18-external-dbops", "", "Email for external partner sysadmin")
flags.StringVar(&conf.Cloud18ExternalSysOps, "cloud18-external-sysops", "", "Email for external partner sysadmin")
flags.StringVar(&conf.Cloud18InfraCertifications, "cloud18-infra-certifications", "", "The type of auditing certificats made on the infrastructure")
if WithProvisioning == "ON" {
flags.StringVar(&conf.ProvDatadirVersion, "prov-db-datadir-version", "10.2", "Empty datadir to deploy for localtest")
Expand Down
1 change: 1 addition & 0 deletions share/dashboard_react/src/Pages/PeerClusterList/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@ function PeerClusterList({ onLogin, mode }) {
{ key: 'Time To Response', value: clusterItem['cloud18-sla-response-time'] + "Hours" },
{ key: 'Time To Repair', value: clusterItem['cloud18-sla-repair-time'] + "Hours" },
{ key: 'Time To Provision', value: clusterItem['cloud18-sla-provision-time'] + "Hours" },
{ key: 'Certifications', value: clusterItem['cloud18-infra-certifications'] },
{ key: 'Infrastructure', value: clusterItem['prov-orchestrator'] + " " + clusterItem['cloud18-platform-description'] },
/* {
key: 'Share',
Expand Down

0 comments on commit 77a3926

Please sign in to comment.