superbool
superbool
User crontab to restart every hour. `0 */1 * * * sh /data/apps/burrow/restart.sh`
Thank you very much
## Additional context When goto deaded, the DMASR register TPSS RPSS was 1, and I did't found any error handle code in HAL_ETH_IRQHandler about TPSS RPSS . How it happened,...
Make sure your local PC "127.0.0.1" and the "mywifi" in the same wifi. You can print you ESP8266's ip address and the PC ip address to check.
Check your wifi is stable.
You can split the packets to small ones then send one by one . In you esp32 when received try to merge the packets. https://mqtt.org "It is designed as an...
I guess **MQTT_MAX_MESSAGE_SIZE ** is old used, and the doc not changed it.
Have the same problem. Use SpringBoot webflux and SpringCloud Gateway ,can't forward OPTIONS requests with Spring Cloud Gateway to out backend service. So I overwite "org.springframework.web.cors.reactive.CorsUtils" class, just make **isPreFlightRequest**...
> @tillmannheigel I tried this code: > > ``` > import org.springframework.http.server.reactive.ServerHttpRequest; > import org.springframework.stereotype.Component; > import org.springframework.web.cors.reactive.CorsUtils; > > @Component > public class CustomPostGlobalFilter extends CorsUtils { > >...
> @superbool Can you show me code example, please? Copy **org.springframework.web.cors.reactive.CorsUtils.java** source code to your own project,and overwrite **isPreFlightRequest** method. It looks like this。 