Nikita
Nikita
It is possible to use `SNIHandler` and insert `NIOSSLServerHandler` with required context (certificate)
Present in 0.70.2
In migration you can use getStoredState with previous config and adapter from asyncStorage. Read previous state, then return it from migrate method and it will be persisted with new config...
sure: ``` import AsyncStorage from '@react-native-async-storage/async-storage' import { getStoredState } from 'redux-persist' ... const migrations: MigrationManifest = { 0: ..., 1: state => { const oldState = await getStoredState({ key,...
Hi Please look at this guide: https://github.com/rt2zz/redux-persist/blob/master/docs/migrations.md You need to reference migration in your persist config
That value is set in persist config, so it should be ok. 1. getStoredState gives you a slice of state for the key in old storage. 2. This state is...
Maybe try to add version in persist config equal to index of your migration (1). And check, that "key" property is equal to 'key' as in config.
@vibber see "workaround" section in related [issue](https://github.com/huggingface/diffusers/issues/1466) `collate_fn` is now declared as global, but lambda function is passed as argument instead. Lambdas can't be pickled either :(
@fakerybakery see "workaround" section in related https://github.com/huggingface/diffusers/issues/1466 I managed to fine-tune model once and even got picture of a dog in a bucket with same specs. But later fine-tuning resulted...