Skip to content

Commit 8c239dd

Browse files
committed
fix(all) pg version bump. small tweaks
1 parent 952a346 commit 8c239dd

File tree

12 files changed

+106
-136
lines changed

12 files changed

+106
-136
lines changed

build-rotor.sh

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/bin/bash
2+
set -e
3+
4+
DATE_TAG=$(date +"%Y%m%d%H%M")
5+
IMAGE="jitsucom/rotor:dev-${DATE_TAG}"
6+
7+
echo "Building rotor image..."
8+
docker buildx build \
9+
--target rotor \
10+
--progress=plain \
11+
--load \
12+
-t "$IMAGE" \
13+
-f all.Dockerfile \
14+
.
15+
16+
echo "Loading image into minikube..."
17+
minikube image load --overwrite=true "$IMAGE"
18+
19+
echo "Done: $IMAGE"

libs/core-functions-lib/src/functions/lib/store.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ export const createMemoryStore = (store: any): TTLStore => ({
148148
return value;
149149
}
150150
},
151+
dump: () => memoryStoreDump(store),
151152
});
152153

153154
export const memoryStoreDump = (store: any): any => {

0 commit comments

Comments
 (0)