Skip to content

Commit

Permalink
[DOP-17436] add hive type
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-pedchenko committed Jun 24, 2024
1 parent 04e569e commit fe91c26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 269 deletions.
4 changes: 2 additions & 2 deletions syncmaster/backend/api/v1/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
)
from syncmaster.exceptions.credentials import AuthDataNotFoundError
from syncmaster.exceptions.group import GroupNotFoundError
from syncmaster.schemas.v1.connection_types import ORACLE_TYPE, POSTGRES_TYPE
from syncmaster.schemas.v1.connection_types import HIVE_TYPE, ORACLE_TYPE, POSTGRES_TYPE
from syncmaster.schemas.v1.connections.connection import (
ConnectionCopySchema,
ConnectionPageSchema,
Expand All @@ -30,7 +30,7 @@

router = APIRouter(tags=["Connections"])

CONNECTION_TYPES = ORACLE_TYPE, POSTGRES_TYPE
CONNECTION_TYPES = ORACLE_TYPE, POSTGRES_TYPE, HIVE_TYPE


@router.get("/connections")
Expand Down
267 changes: 0 additions & 267 deletions tests/test_integration/test_run_transfer/test_hve.py

This file was deleted.

0 comments on commit fe91c26

Please sign in to comment.