diff --git a/.github/workflows/cypress-integration-tests-mysql-pr.yml b/.github/workflows/cypress-integration-tests-mysql-pr.yml index c2ef45c343d3..396db185d2fb 100644 --- a/.github/workflows/cypress-integration-tests-mysql-pr.yml +++ b/.github/workflows/cypress-integration-tests-mysql-pr.yml @@ -28,7 +28,6 @@ on: - openmetadata-service/** - openmetadata-clients/** - common/** - permissions: contents: read @@ -86,7 +85,7 @@ jobs: with: ref: ${{ github.event.pull_request.head.ref }} repository: ${{github.event.pull_request.head.repo.full_name}} - + - name: Get Cypress Filter id: get_cypress_filter env: @@ -146,9 +145,8 @@ jobs: wait-on: "http://localhost:8585" command: | npx cypress run --config-file=cypress.config.ts \ - --env grepTags='${{ steps.get_cypress_filter.outputs.e2eFilters }}',grepFilterSpecs=true \ - --group cypress-ci-mysql-pr-oss-${{ github.run_id }}-${{github.run_attempt}} \ - --parallel --record --browser chrome + --env grepTags="${{ steps.get_cypress_filter.outputs.e2eFilters }}",grepFilterSpecs=true \ + --browser chrome env: CYPRESS_BASE_URL: "http://localhost:8585" CYPRESS_RECORD_KEY: ${{ steps.cypress-project-id.outputs.CYPRESS_RECORD_KEY }} @@ -205,4 +203,4 @@ jobs: run: | cd ./docker/development docker compose down --remove-orphans - sudo rm -rf ${PWD}/docker-volume \ No newline at end of file + sudo rm -rf ${PWD}/docker-volume diff --git a/openmetadata-ui/src/main/resources/ui/src/rest/tableAPI.ts b/openmetadata-ui/src/main/resources/ui/src/rest/tableAPI.ts index 8b3e7a00d10a..1c34215a2765 100644 --- a/openmetadata-ui/src/main/resources/ui/src/rest/tableAPI.ts +++ b/openmetadata-ui/src/main/resources/ui/src/rest/tableAPI.ts @@ -53,7 +53,7 @@ export const getTableVersions = async (id: string) => { }; export const getTableVersion = async (id: string, version: string) => { - const url = `${BASE_URL}/${id}/versions/${version}`; + const url = `${BASE_URL}/${id}/versios/${version}`; const response = await APIClient.get(url); diff --git a/openmetadata-ui/src/main/resources/ui/src/rest/tagAPI.ts b/openmetadata-ui/src/main/resources/ui/src/rest/tagAPI.ts index 6373db36eb16..dda251aaf864 100644 --- a/openmetadata-ui/src/main/resources/ui/src/rest/tagAPI.ts +++ b/openmetadata-ui/src/main/resources/ui/src/rest/tagAPI.ts @@ -119,7 +119,7 @@ export const updateTag = async (data: Classification) => { export const patchTag = async (id: string, data: Operation[]) => { const response = await APIClient.patch>( - `/tags/${id}`, + `/tag/${id}`, data );