|
@@ -196,6 +196,11 @@ public class LaserService {
|
|
|
params.put("oldSceneCode", oldNum);
|
|
|
params.put("path",path);
|
|
|
params.put("init",flag);
|
|
|
+
|
|
|
+ if(flag){
|
|
|
+ rabbitMqProducer.sendByWorkQueue(laserInitCopyScene,params);
|
|
|
+ return;
|
|
|
+ }
|
|
|
rabbitMqProducer.sendByWorkQueue(laserCopyScene,params);
|
|
|
}
|
|
|
|
|
@@ -282,6 +287,8 @@ public class LaserService {
|
|
|
private String cloudPointBuild;
|
|
|
@Value("${queue.application.laser.copy-scene:laser-copy-scene}")
|
|
|
private String laserCopyScene;
|
|
|
+ @Value("${queue.application.laser.copy-scene:laser-copy-scene-init}")
|
|
|
+ private String laserInitCopyScene;
|
|
|
|
|
|
|
|
|
|