Skip to content

Commit 8e4121c

Browse files
authored
"Disable device sync, bump version" (#1624)
1 parent e54136a commit 8e4121c

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

agents/bots/gm/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ const agent = await Agent.createFromEnv({
1111
(process.env.RAILWAY_VOLUME_MOUNT_PATH ?? ".") +
1212
`/${process.env.XMTP_ENV}-${inboxId.slice(0, 8)}.db3`,
1313
appVersion: APP_VERSION,
14+
disableDeviceSync: true,
1415
});
1516

1617
agent.on("text", async (ctx) => {

agents/bots/key-check/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,7 @@ const agent = await Agent.createFromEnv({
288288
(process.env.RAILWAY_VOLUME_MOUNT_PATH ?? ".") +
289289
`/${process.env.XMTP_ENV}-${inboxId.slice(0, 8)}.db3`,
290290
codecs: [new ActionsCodec(), new IntentCodec()],
291+
disableDeviceSync: true,
291292
});
292293

293294
// Add inline actions middleware

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "xmtp-qa-tools",
3-
"version": "0.4.29",
3+
"version": "0.4.30",
44
"private": true,
55
"type": "module",
66
"workspaces": [

0 commit comments

Comments
 (0)