Skip to content

Commit

Permalink
fix: fix missing argument
Browse files Browse the repository at this point in the history
  • Loading branch information
rahmatrhd authored and idilhaq committed Nov 28, 2024
1 parent 3881f0b commit 50f1f15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/providers/maxcompute/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ func (p *provider) getRestClient(pc *domain.ProviderConfig) (*maxcompute.Client,
if err != nil {
return nil, err
}
clientConfig, err := p.getClientConfig(creds)
clientConfig, err := p.getClientConfig(pc.URN, creds)
if err != nil {
return nil, err
}
Expand All @@ -337,7 +337,7 @@ func (p *provider) getOdpsClient(pc *domain.ProviderConfig) (*odps.Odps, error)
if err != nil {
return nil, err
}
clientConfig, err := p.getClientConfig(creds)
clientConfig, err := p.getClientConfig(pc.URN, creds)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 50f1f15

Please sign in to comment.