fix(forest): 修复启动同步没有传参数
This commit is contained in:
@@ -9,10 +9,10 @@ import com.dtflys.forest.annotation.Query;
|
|||||||
*/
|
*/
|
||||||
public interface LauncherService {
|
public interface LauncherService {
|
||||||
@Get("/launcher/synchronizer/start")
|
@Get("/launcher/synchronizer/start")
|
||||||
void syncStart(Long flinkJobId);
|
void syncStart(@Query("flink_job_id") Long flinkJobId);
|
||||||
|
|
||||||
@Get("/launcher/synchronizer/stop")
|
@Get("/launcher/synchronizer/stop")
|
||||||
void syncStop(Long flinkJobId);
|
void syncStop(@Query("flink_job_id") Long flinkJobId);
|
||||||
|
|
||||||
@Get("/launcher/compaction/stop")
|
@Get("/launcher/compaction/stop")
|
||||||
void compactionStop(@Query("flink_job_id") Long flinkJobId, @Query("alias") String alias);
|
void compactionStop(@Query("flink_job_id") Long flinkJobId, @Query("alias") String alias);
|
||||||
|
|||||||
Reference in New Issue
Block a user