diff --git a/README.md b/README.md
index 230abcbfc..f78bf3644 100755
--- a/README.md
+++ b/README.md
@@ -204,6 +204,7 @@ For previous versions, please read:
## V3 changes
+* v3.0, 2020-09-10, RTC: Change SO_REUSEPORT fail to warning. 3.0.142
* v3.0, 2020-06-27, [3.0 release0(3.0.141)][r3.0r0] released. 122674 lines.
* v3.0, 2020-03-30, For [#1672][bug #1672], fix dvr close file failed bug. 3.0.140
* v3.0, 2020-03-29, [3.0 beta4(3.0.139)][r3.0b4] released. 122674 lines.
diff --git a/trunk/src/core/srs_core_version3.hpp b/trunk/src/core/srs_core_version3.hpp
index 8e10a9279..79bbf7249 100644
--- a/trunk/src/core/srs_core_version3.hpp
+++ b/trunk/src/core/srs_core_version3.hpp
@@ -24,6 +24,6 @@
#ifndef SRS_CORE_VERSION3_HPP
#define SRS_CORE_VERSION3_HPP
-#define SRS_VERSION3_REVISION 141
+#define SRS_VERSION3_REVISION 142
#endif
diff --git a/trunk/src/protocol/srs_service_st.cpp b/trunk/src/protocol/srs_service_st.cpp
index f2fbf20e5..0e2c4f586 100644
--- a/trunk/src/protocol/srs_service_st.cpp
+++ b/trunk/src/protocol/srs_service_st.cpp
@@ -124,12 +124,7 @@ srs_error_t srs_fd_reuseport(int fd)
#if defined(SO_REUSEPORT)
int v = 1;
if (setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &v, sizeof(int)) == -1) {
- #ifdef SRS_CROSSBUILD
- srs_warn("SO_REUSEPORT disabled for crossbuild");
- return srs_success;
- #else
- return srs_error_new(ERROR_SOCKET_SETREUSEADDR, "SO_REUSEPORT fd=%d", fd);
- #endif
+ srs_warn("SO_REUSEPORT failed for fd=%d", fd);
}
#else
#warning "SO_REUSEPORT is not supported by your OS"