We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdc18cb commit 1ec7f38Copy full SHA for 1ec7f38
.github/workflows/ci.yaml
@@ -51,5 +51,5 @@ jobs:
51
uses: actions/upload-artifact@v4
52
if: ${{ failure() }}
53
with:
54
- name: maven-build-logs
+ name: logs-test-${{ github.run_id}}#${{ github.run_number }}
55
path: ${{ runner.temp }}/fluss-logs/*
fluss-rpc/src/test/java/com/alibaba/fluss/rpc/protocol/ApiManagerTest.java
@@ -48,7 +48,7 @@ void testApiManager() {
48
49
// coordinator only
50
assertThat(coordinatorApi.getApi(ApiKeys.CREATE_TABLE.id)).isNotNull();
- assertThat(tabletserverApi.getApi(ApiKeys.CREATE_TABLE.id)).isNull();
+ assertThat(tabletserverApi.getApi(ApiKeys.CREATE_TABLE.id)).isNotNull();
}
@Test
0 commit comments