mengw15 opened a new issue, #4989:
URL: https://github.com/apache/texera/issues/4989
### Task Summary
`storage.iceberg.catalog.rest-uri` (lines 27–28 in
`common/config/src/main/resources/storage.conf`) is a hyphenated flat key
that no Scala code reads. The active key is the nested
`storage.iceberg.catalog.rest.uri` (line 32, inside the `rest { ... }`
block), which already consumes the same `STORAGE_ICEBERG_CATALOG_REST_URI`
env var. The flat key is dead weight that misleads contributors mapping
env → config → Scala.
```
rest-uri = "" # ← unread
rest-uri = ${?STORAGE_ICEBERG_CATALOG_REST_URI} # ← unread
rest {
uri = "http://localhost:8181/catalog" # ← live
uri = ${?STORAGE_ICEBERG_CATALOG_REST_URI} # ← live (same env var)
...
}
```
### Proposed change
Delete those two `rest-uri` lines from `storage.conf`. Nothing else
changes — the nested `rest.uri` key and its env-var override stay.
### Task Type
Refactor / Cleanup
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]