mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-05-04 03:40:32 +00:00
aws profile fixes
This commit is contained in:
@@ -762,8 +762,11 @@ public abstract class DataStorage {
|
||||
}
|
||||
|
||||
var s = pair.getKey().getStorePersistentState();
|
||||
var mergedState = s.mergeCopy(pair.getValue().get().getStorePersistentState());
|
||||
pair.getKey().setStorePersistentState(mergedState);
|
||||
// We might not be a stateful store
|
||||
if (s != null) {
|
||||
var mergedState = s.mergeCopy(pair.getValue().get().getStorePersistentState());
|
||||
pair.getKey().setStorePersistentState(mergedState);
|
||||
}
|
||||
|
||||
if (pair.getKey().getOrderIndex() == 0 && pair.getValue().get().getOrderIndex() != 0) {
|
||||
pair.getKey().setOrderIndex(pair.getValue().get().getOrderIndex());
|
||||
|
||||
Reference in New Issue
Block a user