Skip to content

Commit

Permalink
fix(credentials): gpg agent forwarding on pro
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalbreuninger committed Dec 5, 2024
1 parent 6749af5 commit 61755c2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/agent/tunnelserver/runnerserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ func (t *runnerServer) GitCredentials(ctx context.Context, message *tunnel.Messa
return &tunnel.Message{}, nil
}

func (t *runnerServer) GPGPublicKeys(ctx context.Context, message *tunnel.Message) (*tunnel.Message, error) {
return &tunnel.Message{}, nil
}

func (t *runnerServer) GitUser(ctx context.Context, empty *tunnel.Empty) (*tunnel.Message, error) {
return &tunnel.Message{}, nil
}
Expand Down

0 comments on commit 61755c2

Please sign in to comment.