Skip to content

Commit

Permalink
Fix loggers
Browse files Browse the repository at this point in the history
  • Loading branch information
levichevdmitry committed Jun 10, 2021
1 parent 74d4030 commit 15d4290
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## <a name="1.3.2"></a> 1.3.3 (2021-06-08)
### Features
* Update Instruments and added tracers
* Fix loggers
## <a name="1.3.2"></a> 1.3.2 (2021-05-06)
### Features
* **test** Refactor test services running
Expand Down
4 changes: 2 additions & 2 deletions clients/CommandableHttpClient.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Example:
...
*/
type CommandableHttpClient struct {
RestClient
*RestClient
}

// NewCommandableHttpClient is creates a new instance of the client.
Expand All @@ -77,7 +77,7 @@ type CommandableHttpClient struct {
// pointer on new instance
func NewCommandableHttpClient(baseRoute string) *CommandableHttpClient {
c := CommandableHttpClient{}
c.RestClient = *NewRestClient()
c.RestClient = NewRestClient()
c.BaseRoute = baseRoute
return &c
}
Expand Down

0 comments on commit 15d4290

Please sign in to comment.