Skip to content

Commit

Permalink
fix(studio): ignore proxy when calling core (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
allardy authored Oct 18, 2021
1 parent 0220da2 commit cf44e91
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [0.0.40](https://github.com/botpress/studio/compare/v0.0.39...v0.0.40) (2021-10-18)


### Bug Fixes

* always display search bar on qna ([#136](https://github.com/botpress/studio/issues/136)) ([0220da2](https://github.com/botpress/studio/commit/0220da24965daa3b1e35a4599e7d14e82229a4dc))



## [0.0.39](https://github.com/botpress/studio/compare/v0.0.28...v0.0.39) (2021-10-07)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@botpress/studio",
"version": "0.0.39",
"version": "0.0.40",
"description": "Create your virtual assistants",
"main": "index.js",
"engines": {
Expand Down
1 change: 1 addition & 0 deletions packages/studio-be/src/core/app/core-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ let coreClient: AxiosInstance

if (INTERNAL_PASSWORD) {
coreClient = axios.create({
proxy: false,
headers: { authorization: INTERNAL_PASSWORD },
baseURL: `http://localhost:${CORE_PORT}${ROOT_PATH}/api/internal`
})
Expand Down

0 comments on commit cf44e91

Please sign in to comment.