I am facing issue on,
Xcode 10.2.1
macOS Mojave 10.14 .5
Fatal error: Binding error to behavior relay: objectDeleted: file /Users/webwerks/Desktop/Monster/iOS/monstar_mukesh/project_name/Pods/RxCocoa/RxCocoa/Common/Observable+Bind.swift, line 90
2019-07-04 15:42:33.074374+0530 target_name[2731:1953909] Fatal error: Binding error to behavior relay: objectDeleted: file
Note
For macOS High Sierra 10.13.6
Xcode 10.1
There was not any issue & crash on existing code.

Please follow the issue template and provide additional code (preferably, reproducible). Otherwise we won't be able top help as this doesn't seem like an issue inside RxSwift.
Hey, Thanks for reply Can I connect you on skype please?
No, sorry, we don't provide private tech support for people :)
If this is an issue with the framework itself that you can reproduce, please open a new issue with code. If you have a specific issue with your own code base, it's better to use Slack or other support channels (http://slack.rxswift.org).
What I suspect is, Issue is in the following code..
private func logoutAction() -> CocoaAction {
return CocoaAction { [weak self] in
guard let `self` = self else { return .empty() }
let subject = PublishSubject<Void>()
func changeRootView() {
let authScene = AuthScene.signin(coordinator: self.sceneCoordinator)
self.sceneCoordinator.transition(to: authScene, type: .root(animationType: .present))
.asObservable()
.mapTo(())
.bind(to: subject)
.disposed(by: self.disposeBag)
}
self.logoutRequestAction.execute(())
.subscribe { changeRootView() }
.disposed(by: self.disposeBag)
subject
.subscribe{
APITokenManager.shared.removeToken()
RealmDBManager.shared.deleteAllData()
OneSignalManager.shared.unsubscribe()
}
.disposed(by: self.disposeBag)
return subject
}
}
Most helpful comment
No, sorry, we don't provide private tech support for people :)
If this is an issue with the framework itself that you can reproduce, please open a new issue with code. If you have a specific issue with your own code base, it's better to use Slack or other support channels (http://slack.rxswift.org).