INNER CODE UNIT · Go
func
istio-ecosystem/admiral · admiral/pkg/clusters/admiralDatabaseClient.go:84
func (dynamicConfigDatabaseClient *DynamicConfigDatabaseClient) Update(data interface{}, logger *log.Entry) error {
//TODO implement me
//At point of release there is no plan to support push config to dyanmic config storage
panic("implement me")
}
func (dynamicConfigDatabaseClient *DynamicConfigDatabaseClient) Delete(data interface{}, logger *log.Entry) error {
//TODO implement me
//At point of release there is no plan to support delete config to dyanmic config storage
panic("implement me")
}
func (dynamicConfigDatabaseClient *DynamicConfigDatabaseClient) Get(env, identity string) (interface{}, error) {
//Variable renaming is done to re-purpose existing interface
err := checkIfDynamicConfigDatabaseClientIsInitialized(dynamicConfigDatabaseClient)
if err != nil {
return nil, err