Skip to content

Commit 90e4eba

Browse files
committed
port changes from fec9800
1 parent 476d2d5 commit 90e4eba

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

core/src/main/java/org/apache/iceberg/rest/requests/RemoteSignRequestParser.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ public static Map<String, List<String>> headersFromJson(String property, JsonNod
120120
Map<String, List<String>> headers = Maps.newHashMap();
121121
JsonNode headersNode = JsonUtil.get(property, json);
122122
headersNode
123-
.fields()
124-
.forEachRemaining(
123+
.properties()
124+
.forEach(
125125
entry -> {
126126
String key = entry.getKey();
127127
List<String> values = Arrays.asList(JsonUtil.getStringArray(entry.getValue()));

0 commit comments

Comments
 (0)