Skip to content

Commit

Permalink
fix error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
korotkov-aerospike committed Oct 17, 2023
1 parent da91a3b commit f6d6888
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions pkg/service/configuration_manager_s3.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,10 @@ type S3ConfigurationManager struct {
}

func (s S3ConfigurationManager) ReadConfiguration() (*model.Config, error) {
//TODO implement me
panic("implement me")
}

func (s S3ConfigurationManager) WriteConfiguration(config *model.Config) error {
//TODO implement me
panic("implement me")
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/service/configuration_service_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ func DeleteCluster(config *model.Config, clusterToDeleteName *string) error {
config.AerospikeClusters = append(config.AerospikeClusters[:i], config.AerospikeClusters[i+1:]...)
return nil
}
return fmt.Errorf("Cluster %s not found", *clusterToDeleteName)
return fmt.Errorf("cluster %s not found", *clusterToDeleteName)
}

0 comments on commit f6d6888

Please sign in to comment.