Compare commits

..

No commits in common. "721f80d0f268e76ae4942de245804a5743886187" and "1fa830f2866d9b39b96d4ea593b7aad99653bab4" have entirely different histories.

2 changed files with 1 additions and 3 deletions

View File

@ -81,8 +81,7 @@ func (arp *ATRequestParser) GetInput(rq any) ([]byte, error) {
return nil, fmt.Errorf("no input found")
}
trimmedInput := strings.TrimSpace(parts[len(parts)-1])
return []byte(trimmedInput), nil
return []byte(parts[len(parts)-1]), nil
}
func parseQueryParams(query string) map[string]string {

View File

@ -204,7 +204,6 @@ func(s *SshRunner) GetEngine(sessionId string) (engine.Engine, func(), error) {
// adapted example from crypto/ssh package, NewServerConn doc
func(s *SshRunner) Run(ctx context.Context, keyStore *SshKeyStore) {
s.Ctx = ctx
running := true
// TODO: waitgroup should probably not be global