Skip to content

storage upgrade from 1.2.1 to LEGACY branch doesn't upgrade correctly #301

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
joonmanji opened this issue Feb 19, 2020 · 6 comments
Closed

Comments

@joonmanji
Copy link
Contributor

Current behavior

when upgrading storage from 1.2.1 to the LEGACY branch, storage from an old directory is not being moved/copied over to the new directory... i believe this is happening because on init when RCTStorageDirectoryMigrate tries to migrate new data to [root]/data/Containers/Data/Application/[app id]/Library/Application Support/[bundle id]/RCTAsyncLocalStorage_V1 the folder doesn't exist. when i try to run the below code right before the filemanager attempts to copy over the data, migration [NSFileManager copyItemAtPath: toPath: Error:] runs correctly:

    if (!RCTHasCreatedStorageDirectory) {
        NSString *storageDirectoryPath = NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory, NSUserDomainMask, YES).firstObject;
        storageDirectoryPath = [storageDirectoryPath stringByAppendingPathComponent:[[NSBundle mainBundle] bundleIdentifier]];

      [[NSFileManager defaultManager] createDirectoryAtPath:storageDirectoryPath
                                withIntermediateDirectories:YES
                                                 attributes:nil
                                                      error:&error];
      RCTHasCreatedStorageDirectory = YES;
    }

Screen Shot 2020-02-18 at 6 34 07 PM

Expected behavior

We shouldn't get the warning and folder migration should happen correctly.

Repro steps

  1. check out this repo: https://github.com/frankenthumbs/AsyncStorageUpgradePOC
  2. run yarn on root
  3. run pod install on /ios folder
  4. run ios application
  5. tap set storage to 'I Like to Save It' to save a string to async storage
  6. in package json, upgrade @react-native-community/async-storage to git://github.com/react-native-community/async-storage.git#4e49db6308882515a284a183c8e9daf5a50b33ef
  7. in change lines
pod 'react-native-async-storage', :path => '../node_modules/@react-native-community/async-storage'

to

pod 'RNCAsyncStorage', :path => '../node_modules/@react-native-community/async-storage'
  1. run yarn and pod install described in step 2 and 3
  2. run application and notice that async-storage is null (where it should be set to saved string) and we get aforementioned warning.

Environment

  • Async Storage version: commit: 4e49db6
  • React-Native version: 0.61.5
  • Platform tested: iOS
  • Logs/Error that are relevant: 2020-02-18 17:00:13.828 [warn][tid:com.facebook.react.JavaScript][RNCAsyncStorage.m:205] Failed to copy old storage directory to new storage directory location during migration: Error Domain=NSCocoaErrorDomain Code=4 "The file “RCTAsyncLocalStorage_V1” doesn’t exist." UserInfo={NSSourceFilePathErrorKey=/Users/joon.son/Library/Developer/CoreSimulator/Devices/A9A28D7F-CDD1-49EC-9138-356C0A9A7C4C/data/Containers/Data/Application/B8CAFA4D-89A5-4EE5-92F0-78B4406870D3/Documents/RCTAsyncLocalStorage_V1, NSUserStringVariant=( Copy ), NSDestinationFilePath=/Users/joon.son/Library/Developer/CoreSimulator/Devices/A9A28D7F-CDD1-49EC-9138-356C0A9A7C4C/data/Containers/Data/Application/B8CAFA4D-89A5-4EE5-92F0-78B4406870D3/Library/Application Support/com.nfl.mobile3/RCTAsyncLocalStorage_V1, NSFilePath=/Users/joon.son/Library/Developer/CoreSimulator/Devices/A9A28D7F-CDD1-49EC-9138-356C0A9A7C4C/data/Containers/Data/Application/B8CAFA4D-89A5-4EE5-92F0-78B4406870D3/Documents/RCTAsyncLocalStorage_V1, NSUnderlyingError=0x60000159a3a0 {Error Domain=NSPOSIXErrorDomain Code=2 "No such file or directory"}}
@lorenc-tomasz
Copy link

Have the same issue.

@joonmanji
Copy link
Contributor Author

i put up a PR here. #303 definitely not my finest work.. would love feedback on it if possible.

@christianrank
Copy link

christianrank commented Feb 21, 2020

Also getting this issue after switching from React Native's (0.59.10) internal Async Storage implementation to this external package. 🙁

Going back to 1.7.1, currently it's not possible for us to use 1.8.0.

@christianrank
Copy link

christianrank commented Feb 21, 2020

Still getting the issue on 1.7.1, because the Pod RNCAsyncStorage 1.8.0 is installed with it. How can I switch back to the 1.7.1 pod?

Doing it manually in podfile.lock doesn't work.

Edit: this was just NPM being super smart. ^1.7.1 was still getting 1.8.0 😂

@tranhoangduong1994
Copy link

tranhoangduong1994 commented Feb 24, 2020

I experienced the same issue when migrate from 1.6.2 to 1.8.0. For now, using 1.7.1 is my workaround.

@joonmanji
Copy link
Contributor Author

should be fixed with 1.8.1. closing.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants