Skip to content

Commit

Permalink
Fix path of DP REST services
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Libanori committed Jul 17, 2024
1 parent d66154e commit 2f440a7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ export default defineComponent({
// launch avro export job
this.$http
.post(
import.meta.env.VITE_KNOWAGE_CONTEXT + `/1.0/data-preparation/prepare/${this.dataset.id}`,
import.meta.env.VITE_KNOWAGE_CONTEXT + `/restful-services/1.0/data-preparation/prepare/${this.dataset.id}`,
{},
{
headers: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ export default defineComponent({
// launch avro export job
await this.$http
.post(
import.meta.env.VITE_KNOWAGE_CONTEXT + `/1.0/data-preparation/prepare/${dsId}`,
import.meta.env.VITE_KNOWAGE_CONTEXT + `/restful-services/1.0/data-preparation/prepare/${dsId}`,
{},
{
headers: {
Expand Down
2 changes: 1 addition & 1 deletion src/modules/workspace/views/dataView/WorkspaceDataView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ export default defineComponent({
// launch avro export job
this.$http
.post(
import.meta.env.VITE_KNOWAGE_CONTEXT + `/1.0/data-preparation/prepare/${dsId}`,
import.meta.env.VITE_KNOWAGE_CONTEXT + `/restful-services/1.0/data-preparation/prepare/${dsId}`,
{},
{
headers: {
Expand Down

0 comments on commit 2f440a7

Please sign in to comment.