Commit 725e8f1
committed
fix(iceberg): disable pagination on catalog ping to avoid REST server NPE
iceberg-go v0.6.0 sends pageSize=20 unconditionally on ListNamespaces.
The reference Iceberg REST server (iceberg-rest-fixture) then parses a
null pageToken via Integer.parseInt, returning HTTP 500
NumberFormatException on every Ping. Suppress pagination with
SetPageSize(ctx, 0) so the pageSize query param is omitted.1 parent 9262184 commit 725e8f1
1 file changed
Lines changed: 4 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
95 | 95 | | |
96 | 96 | | |
97 | 97 | | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
98 | 102 | | |
99 | 103 | | |
100 | 104 | | |
| |||
0 commit comments