Skip to content

Eng 2736 Use V2 Routes for Workflows Page #1345

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 25 commits into from
May 20, 2023
Merged
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions integration_tests/backend/test_reads.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import utils
from aqueduct.constants.enums import RuntimeType
from aqueduct.models.response_models import (
GetOperatorWithArtifactNodeResponse,
GetArtifactResultResponse,
GetDagResponse,
GetDagResultResponse,
Expand Down
1 change: 0 additions & 1 deletion sdk/aqueduct/models/response_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,6 @@ class GetOperatorWithArtifactNodeResponse(BaseModel):
inputs: List[uuid.UUID]
outputs: List[uuid.UUID]


# V1 Responses
class PreviewResponse(BaseModel):
"""This is the response object returned by api_client.preview().
Expand Down
2 changes: 1 addition & 1 deletion src/golang/cmd/server/handler/v2/dag_results_get.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
// `api-key`: user's API Key
// Parameters:
// `order_by`:
// Optional single field that the query should be ordered. Requires the table prefix.
// Optional single field that the query should be ordered from the DAG Result table.
// `order_descending`:
// Optional boolean specifying whether order_by should be ascending or descending.
// `limit`:
Expand Down
Loading