Minsu Lee
Minsu Lee
@HerrNiklasRaab Have you enabled spy? By default spy is disabled. https://mobx.netlify.app/api/spy#let-us-spy ```dart import 'package:mobx/mobx.dart'; void main() { mainContext.config = mainContext.config.clone( isSpyEnabled: true, ); mainContext.spy((event) { /* ... */ }); runApp(MyApp());...
@shareisall > rsocket.broker.topology=gossip > rsocket.broker.seeds=192.168.1.2,192.168.1.3,192.168.1.4 The above properties are used by the `alibaba-rsocket-server`. This issue occurs in `alibaba-rsocket-spring-boot-starter.`. https://github.com/alibaba/alibaba-rsocket-broker/blob/fdd39b328b6ed69d7b2e320d8384f29bdc189569/alibaba-rsocket-spring-boot-starter/src/main/java/com/alibaba/spring/boot/rsocket/RSocketAutoConfiguration.java#L166 ```java @Bean @ConditionalOnProperty("rsocket.brokers") public RSocketBrokerHealthIndicator rsocketBrokerHealth(RSocketEndpoint rsocketEndpoint, UpstreamManager upstreamManager, @Value("${rsocket.brokers}") String...
@shareisall I've been using `alibaba-rsocket-broker` in production for over a year. I'm not talking about the rsocket app not working, I'm talking about the **health indicator not registering**. https://github.com/alibaba/alibaba-rsocket-broker/blob/master/alibaba-rsocket-spring-boot-starter/src/main/java/com/alibaba/spring/boot/rsocket/RSocketBrokerHealthIndicator.java https://github.com/alibaba/alibaba-rsocket-broker/blob/fdd39b328b6ed69d7b2e320d8384f29bdc189569/alibaba-rsocket-spring-boot-starter/src/main/java/com/alibaba/spring/boot/rsocket/RSocketAutoConfiguration.java#L167...
``` /Users/runner/work/realm-dart/realm-dart/src/realm-core/src/realm/util/encrypted_file_mapping.cpp:1028: [realm-core-13.24.0] Assertion failed: new_size % (1ULL
@AaronZyLee Hi, I am using [very_good_analysis](https://github.com/VeryGoodOpenSource/very_good_analysis/blob/main/lib/analysis_options.4.0.0.yaml) rule. When I changed it to `flutter_lints`, the problem disappeared.
@chiller If you does not change default setting of persistent subscription, `Max Subscriber Count` is 10. https://eventstore.com/docs/http-api/competing-consumers/index.html#creating-a-persistent-subscription
@Poloten @CaLouro The issue you're experiencing is that MobX doesn't automatically track changes to properties inside objects within `ObservableList` or `ObservableMap`. When you modify `ChatItem` properties, `MobX` doesn't detect these...
The reason MobX behaves this way is due to its **reactivity model** and how it tracks observability. Here's why: ## 1. **Shallow Observation by Default** MobX observes **references** to objects...
@Poloten @CaLouro You'll also need to modify the `Observer`-wrapped `Widgets`. I haven't run the code, but it looks like the current code only rebuilds the entire ListView when the entire...
@ciprig This is a common Flutter lifecycle issue when using MobX's `ReactionBuilder` with `fireImmediately: true`. The problem occurs because the reaction fires during the widget's initialization phase, before `initState()` completes,...