Skip to content

Commit e5635d1

Browse files
authored
Merge pull request #1507 from containers/increase-retry-attempt
Increase retry attempts to attempt to connect to server
2 parents 003612a + 22986e0 commit e5635d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libexec/ramalama/ramalama-client-core

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ class RamaLamaShell(cmd.Cmd):
119119
if sys.stdout.isatty():
120120
print(f"\r{c}", end="", flush=True)
121121

122-
if i > 64:
122+
if i > 512:
123123
break
124124

125125
time.sleep(min(i, 0.1))

0 commit comments

Comments
 (0)