Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
Signed-off-by: Licho <chinabhsun@gmail.com>
  • Loading branch information
leechor committed Feb 2, 2023
1 parent 2d61cdf commit 98ad011
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/format_code.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:

jobs:
format:
if: (github.repository != 'DataLinkDC/dinky') && (vars.FORMAT == 'true')
if: github.repository != 'DataLinkDC/dinky' && vars.FORMAT == 'true'
name: Format Code
runs-on: ubuntu-latest
steps:
Expand Down
3 changes: 1 addition & 2 deletions dinky-core/src/main/java/org/dinky/job/Job.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@
*/
@Getter
@Setter
public class Job {
private Integer id;
public class Job {private Integer id;
private Integer jobInstanceId;
private JobConfig jobConfig;
private String jobManagerAddress;
Expand Down

0 comments on commit 98ad011

Please sign in to comment.