Skip to content

Commit 5982621

Browse files
authored
[cli] ports-list: Increase timeout for establishing connection + receiving response to 5s -> 10s (#20424)
1 parent 2db6b3f commit 5982621

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/gitpod-cli/cmd/ports-list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ var listPortsCmd = &cobra.Command{
2222
Use: "list",
2323
Short: "Lists the workspace ports and their states.",
2424
RunE: func(cmd *cobra.Command, args []string) error {
25-
ctx, cancel := context.WithTimeout(cmd.Context(), 5*time.Second)
25+
ctx, cancel := context.WithTimeout(cmd.Context(), 10*time.Second)
2626
defer cancel()
2727

2828
client, err := supervisor.New(ctx)

0 commit comments

Comments
 (0)