Skip to content

Commit

Permalink
Google Java Format
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed May 16, 2023
1 parent d7151cf commit 70a3dc2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,7 @@ public boolean buildImage(
}

if (jobDeployment.getPythonVersion() == null) {
log.warn(
"Missing pythonVersion. Data Job cannot be deployed.");
log.warn("Missing pythonVersion. Data Job cannot be deployed.");
return false;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -312,8 +312,8 @@ private String getJobVdkImage(JobDeployment jobDeployment) {
return supportedPythonVersions.getVdkImage(jobDeployment.getPythonVersion());
} else {
log.warn(
"An issue with the job deployment's pythonVersion or supportedPythonVersions configuration has"
+ " occurred. Returning default vdk image");
"An issue with the job deployment's pythonVersion or supportedPythonVersions"
+ " configuration has occurred. Returning default vdk image");
return supportedPythonVersions.getDefaultVdkImage();
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ public class SupportedPythonVersions {
@Value("${datajobs.deployment.defaultPythonVersion}")
private String defaultPythonVersion;


/**
* Check if the pythonVersion passed by the user is supported by the Control Service.
*
Expand Down

0 comments on commit 70a3dc2

Please sign in to comment.