File tree Expand file tree Collapse file tree 4 files changed +3
-8
lines changed
vscode-debugger-extension Expand file tree Collapse file tree 4 files changed +3
-8
lines changed Original file line number Diff line number Diff line change 11<h1 align =" center " >
22 <br >
33 <br >
4- <img src=". /banner.png" alt="Temporal workflow debugger">
4+ <img src="https://raw.githubusercontent.com/phuongdnguyen/temporal-workflow-debugger/ad698d27dec8950cf83b629df47763223edbceab/vscode-debugger-extension /banner.png" alt="Temporal workflow debugger">
55 <br >
66</h1 >
77
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ const getExecutableFromConfig = (): string => {
1616 return vscode . workspace . getConfiguration ( "temporal" ) . get ( lang ) as string
1717}
1818
19- type SupportedLanguage = "typescript" | "go" | "java" | " python"
19+ type SupportedLanguage = "typescript" | "go" | "python"
2020
2121export function getDependencies ( lang : SupportedLanguage ) : string {
2222 switch ( lang ) {
@@ -100,9 +100,6 @@ export const getBaseConfiguration = async (): Promise<vscode.DebugConfiguration>
100100 case "go" :
101101 return { ...goConfiguration }
102102
103- case "java" :
104- return { ...javaConfiguration }
105-
106103 case "python" :
107104 // reload executable when user restart the debug "project"
108105 return { ...pythonConfiguration , python : getExecutableFromConfig ( ) || "python" }
Original file line number Diff line number Diff line change @@ -701,8 +701,6 @@ export class HistoryDebuggerPanel {
701701 return "Make sure you have the TypeScript extension installed and ts-node available."
702702 case "go" :
703703 return "Make sure you have the Go extension installed and delve debugger available."
704- case "java" :
705- return "Make sure you have the Java extension pack installed."
706704 case "python" :
707705 return "Make sure you have the Python extension installed."
708706 default :
Original file line number Diff line number Diff line change 11{
22 "name" : " temporal-workflow-debugger" ,
33 "displayName" : " Temporal workflow debugger" ,
4- "version" : " 0.1.7 " ,
4+ "version" : " 0.1.8 " ,
55 "description" : " Debug workflows by setting breakpoints in workflow history and workflow code." ,
66 "categories" : [
77 " Debuggers" ,
You can’t perform that action at this time.
0 commit comments