getRandomID() to allow multiple exec sessions.
This commit is contained in:
parent
3327832370
commit
0478eaf96f
@ -4,7 +4,6 @@ import (
|
||||
"context"
|
||||
"fmt"
|
||||
"os"
|
||||
"strings"
|
||||
"syscall"
|
||||
"time"
|
||||
|
||||
@ -531,8 +530,7 @@ func (d *Driver) ExecTaskStreamingRaw(ctx context.Context, taskID string, comman
|
||||
pspec := spec.Process
|
||||
pspec.Terminal = tty
|
||||
pspec.Args = command
|
||||
s := strings.Split(taskID, "/")
|
||||
execID := s[len(s)-1] + "-exec"
|
||||
execID := getRandomID(8)
|
||||
|
||||
opts, doneCh := drivers.StreamToExecOptions(
|
||||
ctx, command, tty, stream)
|
||||
|
17
containerd/utils.go
Normal file
17
containerd/utils.go
Normal file
@ -0,0 +1,17 @@
|
||||
package containerd
|
||||
|
||||
import (
|
||||
"math/rand"
|
||||
"time"
|
||||
)
|
||||
|
||||
var letters = []rune("ABCDEFGHIJKLMNOPQRSTUVWXYZ" + "abcdefghijklmnopqrstuvwxyz" + "0123456789")
|
||||
|
||||
func getRandomID(length int) string {
|
||||
rand.Seed(time.Now().UnixNano())
|
||||
b := make([]rune, length)
|
||||
for i := 0; i < length; i++ {
|
||||
b[i] = letters[rand.Intn(len(letters))]
|
||||
}
|
||||
return string(b)
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user