Skip to content
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

[Bug]: RealmSync crash with Progress for small realm file #2632

Closed
luigidegiacomo opened this issue Sep 20, 2021 · 10 comments
Closed

[Bug]: RealmSync crash with Progress for small realm file #2632

luigidegiacomo opened this issue Sep 20, 2021 · 10 comments
Assignees

Comments

@luigidegiacomo
Copy link

luigidegiacomo commented Sep 20, 2021

What happened?

Hi, I have implemented a simple progress when I download Realm:

config = new SyncConfiguration(partition, user)
{
	OnProgress = progress =>
    {
		Console.WriteLine($“Progress: {progress.TransferredBytes}/{progress.TransferableBytes}”);
	}
};

realm = await Realm.GetInstanceAsync(config);
Console.WriteLine($“Realm is located at: {realm.Config.DatabasePath}”);

With medium/large realm file (up to 5Mb) all is ok

With small realm file (i.e. 2Mb) I have a crash after initial sync and realm not sync any modify in client app

Repro steps

I have this logging message ONLY first time I download realm (2MB file realm) and app show data but not synch.
If I download first time 8MB file realm, I don't have any logging message and all works

Version

10.5.0

What SDK flavour are you using?

MongoDB Realm (i.e. Sync, auth, functions)

What type of application is this?

Xamarin

Client OS and version

iOS Simulator and my Test iPhone

Code snippets

var appConfig = new AppConfiguration("talk-yhycl")
{
    MetadataPersistenceMode = MetadataPersistenceMode.NotEncrypted
};

var app = Realms.Sync.App.Create(appConfig);

var user = await app.LogInAsync(Credentials.Anonymous());

var config = new SyncConfiguration("cs", user)
{
    OnProgress = progress =>
    {
        int perc = (int)Math.Round(100 * (((double)progress.TransferredBytes) / ((double)progress.TransferableBytes)));
        Console.WriteLine($"Progress: {progress.TransferredBytes}/{progress.TransferableBytes}");
    }
};

var realm = await Realm.GetInstanceAsync(config);
Console.WriteLine($"Realm is located at: {realm.Config.DatabasePath}");

this code NOT CRASH.... but in my true App log many crush messages. From this point I load some structure (edit field e listview in Xamarin) and true App Crash... after have logging "Realm is located.." all structures are filled with data and then I have crush logging message.

Stacktrace of the exception/crash you're getting

2021-09-20 23:06:09.355727+0200 Talk.iOS[74660:2669224] 2021-09-20 21:06:09.347 Info: Connection[1]: Session[1]: client_reset_config = false, Realm exists = true, client reset = false
Thread started: #14
2021-09-20 23:06:09.397488+0200 Talk.iOS[74660:2669224] 2021-09-20 21:06:09.397 Info: Connection[1]: Connected to endpoint ‘3.124.220.115:443’ (from ‘192.168.1.167:50413’)
2021-09-20 23:06:10.476864+0200 Talk.iOS[74660:2668981] Progress: 1334948/1404021
2021-09-20 23:06:10.500245+0200 Talk.iOS[74660:2668979] Progress: 1400540/1404021
2021-09-20 23:06:10.501854+0200 Talk.iOS[74660:2668980] Progress: 1400540/1404021
Thread started: #15
2021-09-20 23:06:10.503544+0200 Talk.iOS[74660:2668979] Progress: 1400540/1404021
2021-09-20 23:06:10.505378+0200 Talk.iOS[74660:2668936] Realm is located at: /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Data/Application/050FD23B-C697-484E-BA35-B4D2FE733A17/Documents/mongodb-realm/talk-yhycl/614895388a3c034fe301a1bb/s_cs.realm
Thread finished: #8
Loaded assembly: /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/73E42563-8360-4FA9-99AE-3CEFE281BE06/Talk.iOS.app/System.Buffers.dll [External]
Loaded assembly: /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/73E42563-8360-4FA9-99AE-3CEFE281BE06/Talk.iOS.app/Remotion.Linq.dll [External]

=================================================================
Native Crash Reporting
Got a segv while executing native code. This usually indicates
a fatal error in the mono runtime or one of the native libraries
used by your application.
=================================================================
Native stacktrace:
0x109aee035 - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/73E42563-8360-4FA9-99AE-3CEFE281BE06/Talk.iOS.app/Frameworks/Mono.framework/Mono : mono_dump_native_crash_info
0x109a8d79e - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/73E42563-8360-4FA9-99AE-3CEFE281BE06/Talk.iOS.app/Frameworks/Mono.framework/Mono : mono_handle_native_crash
0x1099ee38b - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/73E42563-8360-4FA9-99AE-3CEFE281BE06/Talk.iOS.app/Frameworks/Mono.framework/Mono : mono_sigsegv_signal_handler_debug
0x7fff60335d7d - /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_platform.dylib : _sigtramp
0x7fff8000a160 - /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_c.dylib : __c_locale
0x109c4b3f7 - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/73E42563-8360-4FA9-99AE-3CEFE281BE06/Talk.iOS.app/Frameworks/Mono.framework/Mono : ves_icall_System_GCHandle_CheckCurrentDomain
0x10d5ede90 - Unknown
0x10944d0f2 - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/73E42563-8360-4FA9-99AE-3CEFE281BE06/Talk.iOS.app/Frameworks/realm-wrappers.framework/realm-wrappers : _ZNSt3__110__function6__funcIZN5realm5_impl20SyncProgressNotifier15NotifierPackage17create_invocationERKNS4_8ProgressERbE3$_7NS_9allocatorISA_EEFvvEEclEv
0x109445003 - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/73E42563-8360-4FA9-99AE-3CEFE281BE06/Talk.iOS.app/Frameworks/realm-wrappers.framework/realm-wrappers : _ZN5realm5_impl20SyncProgressNotifier6updateEyyyyyy
0x10944b807 - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/73E42563-8360-4FA9-99AE-3CEFE281BE06/Talk.iOS.app/Frameworks/realm-wrappers.framework/realm-wrappers : _ZNSt3__110__function6__funcIZN5realm11SyncSession22do_create_sync_sessionEvE3$_3NS_9allocatorIS4_EEFvyyyyyyEEclEOyS9_S9_S9_S9_S9_
0x1094eb07a - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/73E42563-8360-4FA9-99AE-3CEFE281BE06/Talk.iOS.app/Frameworks/realm-wrappers.framework/realm-wrappers : _ZN12_GLOBAL__N_114SessionWrapper15report_progressEv
0x10952205d - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/73E42563-8360-4FA9-99AE-3CEFE281BE06/Talk.iOS.app/Frameworks/realm-wrappers.framework/realm-wrappers : _ZN5realm5_impl14ClientImplBase7Session24receive_download_messageERKNS_4sync12SyncProgressEyRKNSt3__16vectorINS3_11Transformer15RemoteChangesetENS7_9allocatorISA_EEEE
0x10951fa43 - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/73E42563-8360-4FA9-99AE-3CEFE281BE06/Talk.iOS.app/Frameworks/realm-wrappers.framework/realm-wrappers : _ZN5realm5_impl14ClientProtocol22parse_message_receivedINS0_14ClientImplBase10ConnectionEEEvRT_PKcm
0x10951aa24 - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/73E42563-8360-4FA9-99AE-3CEFE281BE06/Talk.iOS.app/Frameworks/realm-wrappers.framework/realm-wrappers : _ZN5realm5_impl14ClientImplBase10Connection33websocket_binary_message_receivedEPKcm
0x10970a0a5 - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/73E42563-8360-4FA9-99AE-3CEFE281BE06/Talk.iOS.app/Frameworks/realm-wrappers.framework/realm-wrappers : _ZN12_GLOBAL__N_19WebSocket17frame_reader_loopEv
0x109526b4c - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/73E42563-8360-4FA9-99AE-3CEFE281BE06/Talk.iOS.app/Frameworks/realm-wrappers.framework/realm-wrappers : _ZN5realm4util7network7Service9AsyncOper22do_recycle_and_executeINSt3__18functionIFvNS5_10error_codeEmEEEJRS7_RmEEEvbRT_DpOT0_
0x109526614 - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/73E42563-8360-4FA9-99AE-3CEFE281BE06/Talk.iOS.app/Frameworks/realm-wrappers.framework/realm-wrappers : _ZN5realm4util7network7Service14BasicStreamOpsINS1_3ssl6StreamEE16BufferedReadOperINSt3__18functionIFvNS8_10error_codeEmEEEE19recycle_and_executeEv
0x109547a94 - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/73E42563-8360-4FA9-99AE-3CEFE281BE06/Talk.iOS.app/Frameworks/realm-wrappers.framework/realm-wrappers : _ZN5realm4util7network7Service4Impl3runEv
0x1094e537d - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/73E42563-8360-4FA9-99AE-3CEFE281BE06/Talk.iOS.app/Frameworks/realm-wrappers.framework/realm-wrappers : _ZN5realm4sync6Client3runEv
0x109442b5d - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/73E42563-8360-4FA9-99AE-3CEFE281BE06/Talk.iOS.app/Frameworks/realm-wrappers.framework/realm-wrappers : _ZNSt3__1L14__thread_proxyINS_5tupleIJNS_10unique_ptrINS_15__thread_structENS_14default_deleteIS3_EEEEZN5realm5_impl10SyncClientC1ENS2_INS7_4util6LoggerENS4_ISB_EEEERKNS7_16SyncClientConfigENS_8weak_ptrIKNS7_11SyncManagerEEEEUlvE0_EEEEEPvSN_
0x7fff603438fc - /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_pthread.dylib : _pthread_start
0x7fff6033f443 - /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_pthread.dylib : thread_start
=================================================================
Basic Fault Address Reporting
Memory around native instruction pointer (0x109c5d6d6):0x109c5d6c6 48 89 f3 e8 82 2f 01 00 8b 93 d4 00 00 00 31 c9 H…/…1.
0x109c5d6d6 3b 90 d4 00 00 00 0f 94 c1 89 c8 48 83 c4 08 5b ;…H…[
0x109c5d6e6 5d c3 0f 1f 84 00 00 00 00 00 55 48 89 e5 5d e9 ]…UH…].
0x109c5d6f6 46 30 01 00 66 0f 1f 44 00 00 55 48 89 e5 5d c3 F0…f…D…UH…].

=================================================================
Managed Stacktrace:
  at <unknown> <0xffffffff>
  at System.Runtime.InteropServices.GCHandle:CheckCurrentDomain <0x0008f>
  at System.Runtime.InteropServices.GCHandle:op_Explicit <0x00162>
  at System.Runtime.InteropServices.GCHandle:FromIntPtr <0x00072>
  at Realms.Sync.SessionHandle:HandleSessionProgress <0x00092>
  at Realms.Sync.SessionHandle:HandleSessionProgress <0x0011a>
=================================================================

Relevant log output

Managed Stacktrace:
  at <unknown> <0xffffffff>
  at System.Runtime.InteropServices.GCHandle:CheckCurrentDomain <0x0008f>
  at System.Runtime.InteropServices.GCHandle:op_Explicit <0x00162>
  at System.Runtime.InteropServices.GCHandle:FromIntPtr <0x00072>
  at Realms.Sync.SessionHandle:HandleSessionProgress <0x00092>
  at Realms.Sync.SessionHandle:HandleSessionProgress <0x0011a>
@nirinchev
Copy link
Member

Looks like this may be happening due to the GCHandle being released when we try to access it in the callback. This very likely means something is not getting cleaned up/deregistered correctly in the AsyncOpenTask. Since we're seeing the Realm is located at:... message before the crash, it seems to imply the GetInstanceAsync calls succeeds, we release all handles and whatnot, but then we get another progress update callback from somewhere, which tries to operate on a released handle. While checking the handle status is trivial and would fix the crash, we should try and investigate why we're getting the callback in the first place.

@luigidegiacomo
Copy link
Author

I have another Log Progress after logging "Realm is located...", then crash

2021-09-22 00:59:01.090626+0200 Talk.iOS[2803:161045] Progress: 1072978/1642312
2021-09-22 00:59:01.136462+0200 Talk.iOS[2803:160287] Progress: 1597283/1642312
2021-09-22 00:59:01.147514+0200 Talk.iOS[2803:161045] Progress: 1597283/1642312
2021-09-22 00:59:01.147804+0200 Talk.iOS[2803:160247] Realm App is:talk-dajgo
2021-09-22 00:59:01.147984+0200 Talk.iOS[2803:160247] Realm is located at: /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Data/Application/F1D4A6AA-5390-42E6-AD5C-0D3F3D76E805/Documents/mongodb-realm/talk-dajgo/614512cb063503f6b46fc8c7/s_lom22.realm
2021-09-22 00:59:01.148257+0200 Talk.iOS[2803:160287] Progress: 1597283/1642312

=================================================================
Native Crash Reporting

Got a segv while executing native code. This usually indicates
a fatal error in the mono runtime or one of the native libraries
used by your application.

=================================================================
Native stacktrace:

0x10f87c035 - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/5242158D-6397-4668-93A1-D098D98439CB/Talk.iOS.app/Frameworks/Mono.framework/Mono : mono_dump_native_crash_info
0x10f81b79e - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/5242158D-6397-4668-93A1-D098D98439CB/Talk.iOS.app/Frameworks/Mono.framework/Mono : mono_handle_native_crash
0x10f77c38b - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/5242158D-6397-4668-93A1-D098D98439CB/Talk.iOS.app/Frameworks/Mono.framework/Mono : mono_sigsegv_signal_handler_debug
0x7fff60335d7d - /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_platform.dylib : _sigtramp
0x200580000 - Unknown
0x10f9d93f7 - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/5242158D-6397-4668-93A1-D098D98439CB/Talk.iOS.app/Frameworks/Mono.framework/Mono : ves_icall_System_GCHandle_CheckCurrentDomain
0x111b4c166 - Unknown
0x10f1db0f2 - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/5242158D-6397-4668-93A1-D098D98439CB/Talk.iOS.app/Frameworks/realm-wrappers.framework/realm-wrappers : _ZNSt3__110__function6__funcIZN5realm5_impl20SyncProgressNotifier15NotifierPackage17create_invocationERKNS4_8ProgressERbE3$_7NS_9allocatorISA_EEFvvEEclEv
0x10f1d3003 - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/5242158D-6397-4668-93A1-D098D98439CB/Talk.iOS.app/Frameworks/realm-wrappers.framework/realm-wrappers : _ZN5realm5_impl20SyncProgressNotifier6updateEyyyyyy
0x10f1d9807 - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/5242158D-6397-4668-93A1-D098D98439CB/Talk.iOS.app/Frameworks/realm-wrappers.framework/realm-wrappers : _ZNSt3__110__function6__funcIZN5realm11SyncSession22do_create_sync_sessionEvE3$_3NS_9allocatorIS4_EEFvyyyyyyEEclEOyS9_S9_S9_S9_S9_
0x10f27907a - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/5242158D-6397-4668-93A1-D098D98439CB/Talk.iOS.app/Frameworks/realm-wrappers.framework/realm-wrappers : _ZN12_GLOBAL__N_114SessionWrapper15report_progressEv
0x10f27cfac - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/5242158D-6397-4668-93A1-D098D98439CB/Talk.iOS.app/Frameworks/realm-wrappers.framework/realm-wrappers : _ZN5realm4util7network7Service8PostOperIZN12_GLOBAL__N_114SessionWrapper23nonsync_transact_notifyEyE3$_3E19recycle_and_executeEv
0x10f2d5a94 - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/5242158D-6397-4668-93A1-D098D98439CB/Talk.iOS.app/Frameworks/realm-wrappers.framework/realm-wrappers : _ZN5realm4util7network7Service4Impl3runEv
0x10f27337d - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/5242158D-6397-4668-93A1-D098D98439CB/Talk.iOS.app/Frameworks/realm-wrappers.framework/realm-wrappers : _ZN5realm4sync6Client3runEv
0x10f1d0b5d - /Users/luigi/Library/Developer/CoreSimulator/Devices/C85ADBD1-80E2-407F-915B-5CC413BF9E11/data/Containers/Bundle/Application/5242158D-6397-4668-93A1-D098D98439CB/Talk.iOS.app/Frameworks/realm-wrappers.framework/realm-wrappers : _ZNSt3__1L14__thread_proxyINS_5tupleIJNS_10unique_ptrINS_15__thread_structENS_14default_deleteIS3_EEEEZN5realm5_impl10SyncClientC1ENS2_INS7_4util6LoggerENS4_ISB_EEEERKNS7_16SyncClientConfigENS_8weak_ptrIKNS7_11SyncManagerEEEEUlvE0_EEEEEPvSN_
0x7fff603438fc - /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_pthread.dylib : _pthread_start
0x7fff6033f443 - /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_pthread.dylib : thread_start

=================================================================
Basic Fault Address Reporting

Memory around native instruction pointer (0x10f9eb6d6):0x10f9eb6c6 48 89 f3 e8 82 2f 01 00 8b 93 d4 00 00 00 31 c9 H..../........1.
0x10f9eb6d6 3b 90 d4 00 00 00 0f 94 c1 89 c8 48 83 c4 08 5b ;..........H...[
0x10f9eb6e6 5d c3 0f 1f 84 00 00 00 00 00 55 48 89 e5 5d e9 ].........UH..].
0x10f9eb6f6 46 30 01 00 66 0f 1f 44 00 00 55 48 89 e5 5d c3 F0..f..D..UH..].

=================================================================
Managed Stacktrace:

  at <unknown> <0xffffffff>
  at System.Runtime.InteropServices.GCHandle:CheckCurrentDomain <0x00055>
  at System.Runtime.InteropServices.GCHandle:op_Explicit <0x00032>
  at System.Runtime.InteropServices.GCHandle:FromIntPtr <0x0001a>
  at Realms.Sync.SessionHandle:HandleSessionProgress <0x00032>
  at Realms.Sync.SessionHandle:HandleSessionProgress <0x0007a>

=================================================================
2021-09-22 00:59:06.962600+0200 Talk.iOS[2803:161199] Request <OSRequestSendTagsToServer: 0x600003fd7f00> success result {
success = 1;
}

@LaPeste
Copy link
Contributor

LaPeste commented Sep 22, 2021

Hi Luigi,
We'd really appreciate to have a minimal repro project to be able to debug the issue properly.
If you don't feel comfortable to share the code publicly because of sensible data, I can provide you with a link to securely and privately upload the project to our platform.

@luigidegiacomo
Copy link
Author

ok, please tell me link for upload project

@LaPeste
Copy link
Contributor

LaPeste commented Sep 24, 2021

To keep it fully private I need an email address of yours, so I can invite you.

@luigidegiacomo
Copy link
Author

[email protected]

@LaPeste
Copy link
Contributor

LaPeste commented Sep 29, 2021

Hi Luigi. As a little update, we have found an issue on our side. We're working on resolving it. Keep an eye on the next release.

@luigidegiacomo
Copy link
Author

Thanks!

@LaPeste
Copy link
Contributor

LaPeste commented Sep 30, 2021

Hi again Luigi. Just 1 more update, unfortunately we made a release today (10.6.0) but that does not include the fix that I'm working on. At this point the fix will be available in one of the next releases. Stay tuned.

@LaPeste
Copy link
Contributor

LaPeste commented Oct 13, 2021

Closing the issue as it's been fixed in core by this PR.

@LaPeste LaPeste closed this as completed Oct 13, 2021
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Mar 15, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants