* Add v1 support tool proposal * Fission supportability: Add dump command to dump information for debugging
52 lines
1.1 KiB
Go
52 lines
1.1 KiB
Go
/*
|
|
Copyright 2018 The Fission Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"os"
|
|
"text/tabwriter"
|
|
|
|
"github.com/fission/fission/fission/util"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
func replay(c *cli.Context) error {
|
|
fc := util.GetApiClient(c.GlobalString("server"))
|
|
|
|
reqUID := c.String("reqUID")
|
|
if len(reqUID) == 0 {
|
|
log.Fatal("Need a reqUID, use --reqUID flag to specify")
|
|
}
|
|
|
|
responses, err := fc.ReplayByReqUID(reqUID)
|
|
util.CheckErr(err, "replay records")
|
|
|
|
w := tabwriter.NewWriter(os.Stdout, 0, 0, 1, ' ', 0)
|
|
|
|
for _, resp := range responses {
|
|
fmt.Fprintf(w, "%v",
|
|
resp,
|
|
)
|
|
}
|
|
|
|
w.Flush()
|
|
|
|
return nil
|
|
}
|