Skip to content

meta.GetObjectMap code bug #313

@dovefi

Description

@dovefi

Describe the bug
file meta/object.go:49

func (m *Meta) GetObjectMap(bucketName, objectName string) (objMap *ObjMap, err error) {
	m.Client.GetObjectMap(bucketName, objectName)
	return
}

should be

func (m *Meta) GetObjectMap(bucketName, objectName string) (objMap *ObjMap, err error) {
	return m.Client.GetObjectMap(bucketName, objectName)
}

]

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions