Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add deal id string to finalized task #284

Merged
merged 1 commit into from
Jul 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,4 @@ ENV DEALBOT_LOG_JSON=true
ENV DEALBOT_WORKERS=10
ENV STAGE_TIMEOUT=DefaultStorage=48h,DefaultRetrieval=48h
ENV DEALBOT_MIN_FIL=-1
ENV DEALBOT_DAEMON_DRIVER=kubernetes
ENTRYPOINT ["/dealbot"]
22 changes: 22 additions & 0 deletions controller/graphql/schema.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion controller/http_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ type harness struct {
serveErr chan error
}

const defaultPGPort = 5434
const defaultPGPort = 5435

func newHarness(ctx context.Context, t *testing.T, connector state.DBConnector, migrator state.Migrator) *harness {
h := &harness{ctx: ctx}
Expand Down
1 change: 1 addition & 0 deletions tasks/gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ func main() {
schema.SpawnStructField("Size", "Int", true, true),
schema.SpawnStructField("PayloadCID", "String", true, true),
schema.SpawnStructField("ProposalCID", "String", true, true),
schema.SpawnStructField("DealIDString", "String", true, true),
}, schema.SpawnStructRepresentationMap(map[string]string{})))
ts.Accumulate(schema.SpawnList("FinishedTasks", "FinishedTask", false))
ts.Accumulate(schema.SpawnLinkReference("Link_FinishedTask", "FinishedTask"))
Expand Down
138 changes: 132 additions & 6 deletions tasks/ipldsch_satisfaction.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions tasks/ipldsch_types.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading