Skip to content

Commit

Permalink
[PLAT-13154]: Modify url endpoint for TS service
Browse files Browse the repository at this point in the history
Summary:  Modify url endpoint for TS servic

Test Plan:  Modify url endpoint for TS servic

Reviewers: kvikraman

Subscribers: yugaware

Differential Revision: https://phorge.dev.yugabyte.com/D33242
  • Loading branch information
rajmaddy89 committed Mar 16, 2024
1 parent 676feb3 commit 480f32c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions managed/ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion managed/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"@types/react-select": "3.0.19",
"@types/redux-form": "8.3.1",
"@types/yup": "0.29.11",
"@yugabytedb/troubleshoot-ui": "1.0.49",
"@yugabytedb/troubleshoot-ui": "1.0.50",
"ace-builds": "1.4.12",
"axios": "0.21.3",
"bootstrap": "3.4.1",
Expand Down
4 changes: 2 additions & 2 deletions troubleshoot/troubleshooting-framework-ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion troubleshoot/troubleshooting-framework-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yugabytedb/troubleshoot-ui",
"version": "1.0.49",
"version": "1.0.50",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion troubleshoot/troubleshooting-framework-ui/src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class ApiService {

// Fetches list of anomalies
fetchAnamolies = (universeUuid: string, startTime?: Date | null, endTime?: Date | null) => {
const requestURL = `${ROOT_URL}/anomalies`;
const requestURL = IN_DEVELOPMENT_MODE ? 'http://localhost:8080/anomalies' : 'http://10.9.15.156:8080/anomalies';
const params: any = {
universe_uuid: universeUuid
}
Expand Down

0 comments on commit 480f32c

Please sign in to comment.