|
@@ -119,10 +119,10 @@ public class RunBuild {
|
|
|
|
|
|
private void modelBuildMviewPath(String str) {
|
|
|
String[] datas = str.split(":;");
|
|
|
- String id = datas[0];
|
|
|
- String type = datas[1];
|
|
|
- String path = datas[2];
|
|
|
- String fileId = datas[3];
|
|
|
+ String id = datas[0].trim();
|
|
|
+ String type = datas[1].trim();
|
|
|
+ String path = datas[2].trim();
|
|
|
+ String fileId = datas[3].trim();
|
|
|
boolean checkFlag = false;
|
|
|
String token = RedisUtil.tryLock("BuildMview:" + fileId, 60 * 60 * 1000);
|
|
|
if (token != null) {
|