[Feat] flink 1.15 support. (#1010)

* [Feat] flink 1.15 support.
diff --git a/README.md b/README.md
index 86cb213..4a1997d 100644
--- a/README.md
+++ b/README.md
@@ -125,7 +125,7 @@
 click [Document](http://www.streamxhub.com/zh-CN/docs/intro/) for more information
 
 
-## 💋 out users
+## 💋 our users
 
 
 Various companies and organizations use StreamX for research, production and commercial products. Are you using this project ? [you can add your company](https://github.com/streamxhub/streamx/issues/163)
diff --git a/streamx-common/src/main/scala/com/streamxhub/streamx/common/util/PropertiesUtils.scala b/streamx-common/src/main/scala/com/streamxhub/streamx/common/util/PropertiesUtils.scala
index 54b1821..c319253 100644
--- a/streamx-common/src/main/scala/com/streamxhub/streamx/common/util/PropertiesUtils.scala
+++ b/streamx-common/src/main/scala/com/streamxhub/streamx/common/util/PropertiesUtils.scala
@@ -174,7 +174,7 @@
       val line = scanner.nextLine()
       lineNo.incrementAndGet()
       // 1. check for comments
-      val comments = line.split("\\s+#", 2)
+      val comments = line.split("#", 2)
       val conf = comments(0).trim
       // 2. get key and value
       if (conf.nonEmpty) {