File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
packages/core/src/codewhisperer/commands Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -104,8 +104,9 @@ export async function processSQLConversionTransformFormInput(pathToProject: stri
104104 transformByQState . setProjectName ( path . basename ( pathToProject ) )
105105 transformByQState . setProjectPath ( pathToProject )
106106 transformByQState . setSchema ( schema )
107- transformByQState . setSourceJDKVersion ( JDKVersion . JDK8 ) // use dummy value of JDK8 so that startJob API can be called
108- // targetJDKVersion defaults to JDK17, the only supported version, which is fine
107+ // use dummy values of JDK8 & JDK17 so that startJob API can be called
108+ transformByQState . setSourceJDKVersion ( JDKVersion . JDK8 )
109+ transformByQState . setTargetJDKVersion ( JDKVersion . JDK17 )
109110}
110111
111112async function validateJavaHome ( ) : Promise < boolean > {
You can’t perform that action at this time.
0 commit comments