Skip to content

Commit

Permalink
solve param
Browse files Browse the repository at this point in the history
  • Loading branch information
allan committed Jun 10, 2024
1 parent 6076f1a commit 750ff44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions compress/api_customer.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ func (o *compress) GetCredentials() (*Credential, error) {
*/
func (o *compress) GetCustomerS3Zone() (*CustomerS3, error) {
//
queryParam := make(map[string]*string)
queryParam["client_id"] = &o.GetCliendId()
queryParam["api_key"] = &o.apiKey
queryParam := make(map[string]string)
queryParam["client_id"] = o.GetCliendId()
queryParam["api_key"] = o.apiKey
//
resp, err := o.restyGet(GET_ZONE(), queryParam)
if err != nil {
Expand Down

0 comments on commit 750ff44

Please sign in to comment.