Skip to content

Commit

Permalink
오류 및 의도한 형태로 동작하도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
akageun committed Jul 2, 2024
1 parent b03d500 commit 61e1682
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public Map<String, Object> keyspaceDetail(
try (CqlSession session = makeSession()) { //TODO : interface 작업할 때 facade layer 로 변경 예정
result.put("describe", clusterKeyspaceCommander.describe(session, ClusterKeyspaceDescribeArgs.builder()
.keyspace(keyspace)
.withChildren(true)
.withChildren(false)
.pretty(true)
.build()));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const KeyspaceHome = () => {

axios({
method: "GET",
url: `/api/cassandra/clusters/${routeParams.clusterId}/keyspaces/${routeParams.keyspaceName}/tables`,
url: `/api/cassandra/cluster/${routeParams.clusterId}/keyspace/${routeParams.keyspaceName}/table`,
params: {
size: 50,
cursor: tableCursor // TODO: 스크롤 페이지네이션 처리
Expand Down

0 comments on commit 61e1682

Please sign in to comment.