Fix custom agent check [stage]

This commit is contained in:
crschnick
2026-05-27 15:48:15 +00:00
parent 3893f6e15b
commit 25f3372dfb
3 changed files with 7 additions and 2 deletions
@@ -99,7 +99,11 @@ public class CustomAgentStrategy implements SshIdentityAgentStrategy {
@Override
public void checkComplete() throws ValidationException {
Validators.nonNull(AppPrefs.get().defaultSshAgentSocket().getValue());
var agent = AppPrefs.get().sshAgentSocket().getValue();
if (agent == null) {
agent = AppPrefs.get().defaultSshAgentSocket().getValue();
}
Validators.nonNull(agent);
}
@Override
+1
View File
@@ -0,0 +1 @@
- Fix custom agent SSH auth being broken and marked as incomplete
+1 -1
View File
@@ -1 +1 @@
23.2
23.3-1