Updated method references

This commit is contained in:
Andrey Melnikov
2020-02-26 14:05:44 -08:00
parent 0d02829dd9
commit cc49bac23b

View File

@@ -693,12 +693,12 @@ func (c *Client) TerminateWorkflowExecution(namespace, name string) (err error)
}
func (c *Client) GetArtifact(namespace, name, key string) (data []byte, err error) {
config, err := c.getNamespaceConfig(namespace)
config, err := c.GetNamespaceConfig(namespace)
if err != nil {
return
}
s3Client, err := c.getS3Client(namespace, config)
s3Client, err := c.GetS3Client(namespace, config)
if err != nil {
return
}