BadValSize #447

Closed
opened 2023-08-11 14:14:26 +12:00 by mikedilger · 13 comments
mikedilger commented 2023-08-11 14:14:26 +12:00 (Migrated from github.com)

nostr:nevent1qqsp4elqk2v3zk83chpuz9m03xyyzprlsz7cc4pw5ugwduu36fqeq4qpzpmhxue69uhk2tnwdaejumr0dshszrnhwden5te0dehhxtnvdakz7qfqwaehxw309ahx7um5wghx26tww4hxg7nhv9h856t89eehqctrv5hsz9thwden5te0dehhxarj9ehhsarj9ejx2a30qyf8wumn8ghj7mn0wd68yv339e3k7mf0f8f03u

Error: Error { kind: Lmdb(BadValSize), file: None, line: None }

I suspect either a key is longer than 511 bytes, or a DUP_FIXED value is not right.

nostr:nevent1qqsp4elqk2v3zk83chpuz9m03xyyzprlsz7cc4pw5ugwduu36fqeq4qpzpmhxue69uhk2tnwdaejumr0dshszrnhwden5te0dehhxtnvdakz7qfqwaehxw309ahx7um5wghx26tww4hxg7nhv9h856t89eehqctrv5hsz9thwden5te0dehhxarj9ehhsarj9ejx2a30qyf8wumn8ghj7mn0wd68yv339e3k7mf0f8f03u ``` Error: Error { kind: Lmdb(BadValSize), file: None, line: None } ```` I suspect either a key is longer than 511 bytes, or a DUP_FIXED value is not right.
jeremyd commented 2023-08-12 10:39:21 +12:00 (Migrated from github.com)

yep, i got this error too. Gonna try with fresh sqlite..

2023-08-11T22:34:05.543634Z  INFO src/storage/import/mod.rs:15: Importing SQLITE data into LMDB...
2023-08-11T22:34:05.549112Z  INFO src/storage/import/legacy/mod.rs:106: Database is at version 37
2023-08-11T22:34:05.549159Z  INFO src/storage/import/mod.rs:25: LDMB: setup
2023-08-11T22:34:05.549198Z  INFO src/storage/import/mod.rs:32: LMDB: imported local settings.
2023-08-11T22:34:05.549262Z  INFO src/storage/import/mod.rs:39: LMDB: imported settings.
2023-08-11T22:34:10.343314Z  INFO src/storage/import/mod.rs:49: LMDB: imported event-seen-on-relay data.
2023-08-11T22:34:10.385886Z  INFO src/storage/import/mod.rs:60: LMDB: imported event-viewed data.
Error: Error { kind: Lmdb(BadValSize), file: None, line: None }
yep, i got this error too. Gonna try with fresh sqlite.. ``` 2023-08-11T22:34:05.543634Z INFO src/storage/import/mod.rs:15: Importing SQLITE data into LMDB... 2023-08-11T22:34:05.549112Z INFO src/storage/import/legacy/mod.rs:106: Database is at version 37 2023-08-11T22:34:05.549159Z INFO src/storage/import/mod.rs:25: LDMB: setup 2023-08-11T22:34:05.549198Z INFO src/storage/import/mod.rs:32: LMDB: imported local settings. 2023-08-11T22:34:05.549262Z INFO src/storage/import/mod.rs:39: LMDB: imported settings. 2023-08-11T22:34:10.343314Z INFO src/storage/import/mod.rs:49: LMDB: imported event-seen-on-relay data. 2023-08-11T22:34:10.385886Z INFO src/storage/import/mod.rs:60: LMDB: imported event-viewed data. Error: Error { kind: Lmdb(BadValSize), file: None, line: None } ```
mikedilger commented 2023-08-12 13:49:51 +12:00 (Migrated from github.com)

That log helps. The previous reporter didn't have that data. So the problem looks to be in a particular import function.

Found the bug. Fix incoming.

That log helps. The previous reporter didn't have that data. So the problem looks to be in a particular import function. Found the bug. Fix incoming.
mikedilger commented 2023-08-12 13:51:34 +12:00 (Migrated from github.com)

Please pull and try the master branch.

Please pull and try the master branch.
jeremyd commented 2023-08-12 17:22:10 +12:00 (Migrated from github.com)

I have a new DB now, but I saved a copy of the old sqlite, so I tried it again with latest master (with the old sqlite, and moved lmdb out of the way), still same error..

commit 671daa9223d128a792faf4cca6df6865643818ed (HEAD -> gossip_master, origin/unstable, origin/master, origin/HEAD)
Merge: 4325d6b bae4386
Author: Mike Dilger <mike@mikedilger.com>
Date:   Sat Aug 12 13:55:20 2023 +1200

    Merge remote-tracking branch 'remotes/jeremyd/master' into unstable

~/nostr/gossip gossip_master
❯ target/release/gossip
2023-08-12T05:19:58.582019Z  INFO src/storage/import/mod.rs:15: Importing SQLITE data into LMDB...
2023-08-12T05:19:58.582517Z  INFO src/storage/import/legacy/mod.rs:106: Database is at version 37
2023-08-12T05:19:58.582543Z  INFO src/storage/import/mod.rs:25: LDMB: setup
2023-08-12T05:19:58.582572Z  INFO src/storage/import/mod.rs:32: LMDB: imported local settings.
2023-08-12T05:19:58.582618Z  INFO src/storage/import/mod.rs:39: LMDB: imported settings.
2023-08-12T05:20:00.065203Z  INFO src/storage/import/mod.rs:49: LMDB: imported event-seen-on-relay data.
2023-08-12T05:20:00.075802Z  INFO src/storage/import/mod.rs:60: LMDB: imported event-viewed data.
Error: Error { kind: Lmdb(BadValSize), file: None, line: None }
I have a new DB now, but I saved a copy of the old sqlite, so I tried it again with latest master (with the old sqlite, and moved lmdb out of the way), still same error.. ``` commit 671daa9223d128a792faf4cca6df6865643818ed (HEAD -> gossip_master, origin/unstable, origin/master, origin/HEAD) Merge: 4325d6b bae4386 Author: Mike Dilger <mike@mikedilger.com> Date: Sat Aug 12 13:55:20 2023 +1200 Merge remote-tracking branch 'remotes/jeremyd/master' into unstable ~/nostr/gossip gossip_master ❯ target/release/gossip 2023-08-12T05:19:58.582019Z INFO src/storage/import/mod.rs:15: Importing SQLITE data into LMDB... 2023-08-12T05:19:58.582517Z INFO src/storage/import/legacy/mod.rs:106: Database is at version 37 2023-08-12T05:19:58.582543Z INFO src/storage/import/mod.rs:25: LDMB: setup 2023-08-12T05:19:58.582572Z INFO src/storage/import/mod.rs:32: LMDB: imported local settings. 2023-08-12T05:19:58.582618Z INFO src/storage/import/mod.rs:39: LMDB: imported settings. 2023-08-12T05:20:00.065203Z INFO src/storage/import/mod.rs:49: LMDB: imported event-seen-on-relay data. 2023-08-12T05:20:00.075802Z INFO src/storage/import/mod.rs:60: LMDB: imported event-viewed data. Error: Error { kind: Lmdb(BadValSize), file: None, line: None } ```
mikedilger commented 2023-08-12 19:20:22 +12:00 (Migrated from github.com)

If you just want to get past this, look into your sqlite database at the event_hashtag table for a hashtaq that is longer than 511 bytes, or that is empty (zero length).... shit that's probably it, I bet it is zero length. I'll put a check for that.

If you just want to get past this, look into your sqlite database at the event_hashtag table for a hashtaq that is longer than 511 bytes, or that is empty (zero length).... shit that's probably it, I bet it is zero length. I'll put a check for that.
jeremyd commented 2023-08-13 07:17:28 +12:00 (Migrated from github.com)

Oh yeah, don't worry about me, I know how to wipe the db and do a new one (which I did). But I wanted to help fix it for others that may upgrade so I'm willing to keep testing with my old db copy till it works. for the PV. :)

Oh yeah, don't worry about me, I know how to wipe the db and do a new one (which I did). But I wanted to help fix it for others that may upgrade so I'm willing to keep testing with my old db copy till it works. for the PV. :)
mikedilger commented 2023-08-13 07:18:04 +12:00 (Migrated from github.com)

@kpshukla @jeremyd please try the unstable branch and see if that makes a difference.

@kpshukla @jeremyd please try the unstable branch and see if that makes a difference.
jeremyd commented 2023-08-13 07:27:45 +12:00 (Migrated from github.com)

tried it, different error this time, now it's a hashtag

2023-08-12T19:26:25.434538Z  INFO src/storage/import/mod.rs:15: Importing SQLITE data into LMDB...
2023-08-12T19:26:25.435099Z  INFO src/storage/import/legacy/mod.rs:106: Database is at version 37
2023-08-12T19:26:25.435125Z  INFO src/storage/import/mod.rs:25: LDMB: setup
2023-08-12T19:26:25.435158Z  INFO src/storage/import/mod.rs:32: LMDB: imported local settings.
2023-08-12T19:26:25.435212Z  INFO src/storage/import/mod.rs:39: LMDB: imported settings.
2023-08-12T19:26:27.013122Z  INFO src/storage/import/mod.rs:49: LMDB: imported event-seen-on-relay data.
2023-08-12T19:26:27.024586Z  INFO src/storage/import/mod.rs:60: LMDB: imported event-viewed data.
Error: Error { kind: Empty("hashtag"), file: None, line: None }
tried it, different error this time, now it's a hashtag ``` 2023-08-12T19:26:25.434538Z INFO src/storage/import/mod.rs:15: Importing SQLITE data into LMDB... 2023-08-12T19:26:25.435099Z INFO src/storage/import/legacy/mod.rs:106: Database is at version 37 2023-08-12T19:26:25.435125Z INFO src/storage/import/mod.rs:25: LDMB: setup 2023-08-12T19:26:25.435158Z INFO src/storage/import/mod.rs:32: LMDB: imported local settings. 2023-08-12T19:26:25.435212Z INFO src/storage/import/mod.rs:39: LMDB: imported settings. 2023-08-12T19:26:27.013122Z INFO src/storage/import/mod.rs:49: LMDB: imported event-seen-on-relay data. 2023-08-12T19:26:27.024586Z INFO src/storage/import/mod.rs:60: LMDB: imported event-viewed data. Error: Error { kind: Empty("hashtag"), file: None, line: None } ```
mikedilger commented 2023-08-13 09:06:57 +12:00 (Migrated from github.com)

Good. Okay I'll make it non-fatal and them merge it into master.

Good. Okay I'll make it non-fatal and them merge it into master.
mikedilger commented 2023-08-13 09:21:07 +12:00 (Migrated from github.com)

Should be fixed now.

Should be fixed now.
jeremyd commented 2023-08-13 09:23:56 +12:00 (Migrated from github.com)

Sweet, yeah that worked. Here's the log in case you're interested.

2023-08-12T21:22:07.326308Z  INFO src/storage/import/mod.rs:15: Importing SQLITE data into LMDB...
2023-08-12T21:22:07.327261Z  INFO src/storage/import/legacy/mod.rs:106: Database is at version 37
2023-08-12T21:22:07.327338Z  INFO src/storage/import/mod.rs:25: LDMB: setup
2023-08-12T21:22:07.327404Z  INFO src/storage/import/mod.rs:32: LMDB: imported local settings.
2023-08-12T21:22:07.327488Z  INFO src/storage/import/mod.rs:39: LMDB: imported settings.
2023-08-12T21:22:11.987418Z  INFO src/storage/import/mod.rs:49: LMDB: imported event-seen-on-relay data.
2023-08-12T21:22:12.036407Z  INFO src/storage/import/mod.rs:60: LMDB: imported event-viewed data.
2023-08-12T21:22:12.077716Z ERROR src/storage/import/mod.rs:67: hashtag is empty
2023-08-12T21:22:12.095535Z  INFO src/storage/import/mod.rs:71: LMDB: imported event hashtag index.
2023-08-12T21:22:12.100198Z  INFO src/storage/import/mod.rs:78: LMDB: imported relays.
2023-08-12T21:22:12.669439Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 85231
2023-08-12T21:22:13.523584Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 497
2023-08-12T21:22:13.581695Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 655
2023-08-12T21:22:14.060942Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 576
2023-08-12T21:22:14.965958Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 406
2023-08-12T21:22:15.143341Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 9503
2023-08-12T21:22:15.425807Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 860
2023-08-12T21:22:15.946331Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 53550
2023-08-12T21:22:16.091811Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 601
2023-08-12T21:22:18.529155Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 564
2023-08-12T21:22:20.804357Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 576
2023-08-12T21:22:22.116938Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 497
2023-08-12T21:22:23.322896Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 55034
2023-08-12T21:22:23.406034Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 482
2023-08-12T21:22:23.609406Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 576
2023-08-12T21:22:23.620655Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 23766
2023-08-12T21:22:24.370220Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 108908
2023-08-12T21:22:27.168492Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 497
2023-08-12T21:22:27.825469Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 576
2023-08-12T21:22:28.456645Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 576
2023-08-12T21:22:29.134063Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 497
2023-08-12T21:22:29.406719Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 406
2023-08-12T21:22:29.482841Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 497
2023-08-12T21:22:30.009014Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 576
2023-08-12T21:22:32.153548Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 260
2023-08-12T21:22:32.225986Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 43219
2023-08-12T21:22:33.580562Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 21795
2023-08-12T21:22:33.935863Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 576
2023-08-12T21:22:34.511889Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 497
2023-08-12T21:22:35.400167Z  INFO src/storage/import/mod.rs:83: LMDB: imported events and tag index
2023-08-12T21:22:35.475754Z  INFO src/storage/import/mod.rs:90: LMDB: imported people
2023-08-12T21:22:35.674040Z  INFO src/storage/import/mod.rs:97: LMDB: import person_relays
2023-08-12T21:22:36.110048Z  INFO src/storage/import/mod.rs:109: Importing SQLITE data into LMDB: Done.
2023-08-12T21:22:36.110264Z  INFO src/storage/migrations/mod.rs:23: LMDB Migration to level 1...
2023-08-12T21:22:36.111251Z  INFO src/storage/migrations/mod.rs:56: LMDB Migration 1: Computing and storing event relationships for 449913 events...
2023-08-12T21:22:36.350353Z  INFO src/storage/migrations/mod.rs:79: 10% done
2023-08-12T21:22:36.599623Z  INFO src/storage/migrations/mod.rs:79: 20% done
2023-08-12T21:22:36.899173Z  INFO src/storage/migrations/mod.rs:79: 30% done
2023-08-12T21:22:37.151546Z  INFO src/storage/migrations/mod.rs:79: 40% done
2023-08-12T21:22:37.409618Z  INFO src/storage/migrations/mod.rs:79: 50% done
2023-08-12T21:22:37.652454Z  INFO src/storage/migrations/mod.rs:79: 60% done
2023-08-12T21:22:37.904886Z  INFO src/storage/migrations/mod.rs:79: 70% done
2023-08-12T21:22:38.142663Z  INFO src/storage/migrations/mod.rs:79: 80% done
2023-08-12T21:22:38.392905Z  INFO src/storage/migrations/mod.rs:79: 90% done
2023-08-12T21:22:38.653792Z  INFO src/storage/migrations/mod.rs:84: syncing...
Sweet, yeah that worked. Here's the log in case you're interested. ``` 2023-08-12T21:22:07.326308Z INFO src/storage/import/mod.rs:15: Importing SQLITE data into LMDB... 2023-08-12T21:22:07.327261Z INFO src/storage/import/legacy/mod.rs:106: Database is at version 37 2023-08-12T21:22:07.327338Z INFO src/storage/import/mod.rs:25: LDMB: setup 2023-08-12T21:22:07.327404Z INFO src/storage/import/mod.rs:32: LMDB: imported local settings. 2023-08-12T21:22:07.327488Z INFO src/storage/import/mod.rs:39: LMDB: imported settings. 2023-08-12T21:22:11.987418Z INFO src/storage/import/mod.rs:49: LMDB: imported event-seen-on-relay data. 2023-08-12T21:22:12.036407Z INFO src/storage/import/mod.rs:60: LMDB: imported event-viewed data. 2023-08-12T21:22:12.077716Z ERROR src/storage/import/mod.rs:67: hashtag is empty 2023-08-12T21:22:12.095535Z INFO src/storage/import/mod.rs:71: LMDB: imported event hashtag index. 2023-08-12T21:22:12.100198Z INFO src/storage/import/mod.rs:78: LMDB: imported relays. 2023-08-12T21:22:12.669439Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 85231 2023-08-12T21:22:13.523584Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 497 2023-08-12T21:22:13.581695Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 655 2023-08-12T21:22:14.060942Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 576 2023-08-12T21:22:14.965958Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 406 2023-08-12T21:22:15.143341Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 9503 2023-08-12T21:22:15.425807Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 860 2023-08-12T21:22:15.946331Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 53550 2023-08-12T21:22:16.091811Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 601 2023-08-12T21:22:18.529155Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 564 2023-08-12T21:22:20.804357Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 576 2023-08-12T21:22:22.116938Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 497 2023-08-12T21:22:23.322896Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 55034 2023-08-12T21:22:23.406034Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 482 2023-08-12T21:22:23.609406Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 576 2023-08-12T21:22:23.620655Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 23766 2023-08-12T21:22:24.370220Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 108908 2023-08-12T21:22:27.168492Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 497 2023-08-12T21:22:27.825469Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 576 2023-08-12T21:22:28.456645Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 576 2023-08-12T21:22:29.134063Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 497 2023-08-12T21:22:29.406719Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 406 2023-08-12T21:22:29.482841Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 497 2023-08-12T21:22:30.009014Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 576 2023-08-12T21:22:32.153548Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 260 2023-08-12T21:22:32.225986Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 43219 2023-08-12T21:22:33.580562Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 21795 2023-08-12T21:22:33.935863Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 576 2023-08-12T21:22:34.511889Z ERROR src/storage/import/mod.rs:348: PublicKeyHex is not 64 characters long at line 1 column 497 2023-08-12T21:22:35.400167Z INFO src/storage/import/mod.rs:83: LMDB: imported events and tag index 2023-08-12T21:22:35.475754Z INFO src/storage/import/mod.rs:90: LMDB: imported people 2023-08-12T21:22:35.674040Z INFO src/storage/import/mod.rs:97: LMDB: import person_relays 2023-08-12T21:22:36.110048Z INFO src/storage/import/mod.rs:109: Importing SQLITE data into LMDB: Done. 2023-08-12T21:22:36.110264Z INFO src/storage/migrations/mod.rs:23: LMDB Migration to level 1... 2023-08-12T21:22:36.111251Z INFO src/storage/migrations/mod.rs:56: LMDB Migration 1: Computing and storing event relationships for 449913 events... 2023-08-12T21:22:36.350353Z INFO src/storage/migrations/mod.rs:79: 10% done 2023-08-12T21:22:36.599623Z INFO src/storage/migrations/mod.rs:79: 20% done 2023-08-12T21:22:36.899173Z INFO src/storage/migrations/mod.rs:79: 30% done 2023-08-12T21:22:37.151546Z INFO src/storage/migrations/mod.rs:79: 40% done 2023-08-12T21:22:37.409618Z INFO src/storage/migrations/mod.rs:79: 50% done 2023-08-12T21:22:37.652454Z INFO src/storage/migrations/mod.rs:79: 60% done 2023-08-12T21:22:37.904886Z INFO src/storage/migrations/mod.rs:79: 70% done 2023-08-12T21:22:38.142663Z INFO src/storage/migrations/mod.rs:79: 80% done 2023-08-12T21:22:38.392905Z INFO src/storage/migrations/mod.rs:79: 90% done 2023-08-12T21:22:38.653792Z INFO src/storage/migrations/mod.rs:84: syncing... ```
kpshukla commented 2023-08-13 09:43:16 +12:00 (Migrated from github.com)

Aha....worked!! Great

Aha....worked!! Great
mikedilger commented 2023-08-13 10:39:53 +12:00 (Migrated from github.com)

Thanks.

Thanks.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
nostr/gossip#447
No description provided.