mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-10-22 02:19:25 +00:00
Don't expose task data via api (#4108)
This commit is contained in:
@@ -431,16 +431,14 @@ func TestClient_AgentTasksList(t *testing.T) {
|
||||
agentID: 1,
|
||||
expected: []*Task{
|
||||
{
|
||||
ID: "4696",
|
||||
Data: []byte{},
|
||||
ID: "4696",
|
||||
Labels: map[string]string{
|
||||
"platform": "linux/amd64",
|
||||
"repo": "woodpecker-ci/woodpecker",
|
||||
},
|
||||
},
|
||||
{
|
||||
ID: "4697",
|
||||
Data: []byte{},
|
||||
ID: "4697",
|
||||
Labels: map[string]string{
|
||||
"platform": "linux/arm64",
|
||||
"repo": "woodpecker-ci/woodpecker",
|
||||
|
@@ -49,8 +49,7 @@ func TestClient_QueueInfo(t *testing.T) {
|
||||
expected: &Info{
|
||||
Running: []Task{
|
||||
{
|
||||
ID: "4696",
|
||||
Data: []byte{},
|
||||
ID: "4696",
|
||||
Labels: map[string]string{
|
||||
"platform": "linux/amd64",
|
||||
"repo": "woodpecker-ci/woodpecker",
|
||||
|
@@ -246,7 +246,6 @@ type (
|
||||
// Task is the JSON data for a task.
|
||||
Task struct {
|
||||
ID string `json:"id"`
|
||||
Data []byte `json:"data"`
|
||||
Labels map[string]string `json:"labels"`
|
||||
Dependencies []string `json:"dependencies"`
|
||||
RunOn []string `json:"run_on"`
|
||||
|
Reference in New Issue
Block a user