-
Notifications
You must be signed in to change notification settings - Fork 7
Revert "cancel jobs" #75
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -15,12 +15,12 @@ import ( | |||||||||||||||||||||||||
| "github.com/patterninc/heimdall/internal/pkg/database" | ||||||||||||||||||||||||||
| "github.com/patterninc/heimdall/internal/pkg/janitor" | ||||||||||||||||||||||||||
| "github.com/patterninc/heimdall/internal/pkg/pool" | ||||||||||||||||||||||||||
| "github.com/patterninc/heimdall/internal/pkg/rbac" | ||||||||||||||||||||||||||
| "github.com/patterninc/heimdall/internal/pkg/server" | ||||||||||||||||||||||||||
| "github.com/patterninc/heimdall/pkg/object/cluster" | ||||||||||||||||||||||||||
| "github.com/patterninc/heimdall/pkg/object/command" | ||||||||||||||||||||||||||
| "github.com/patterninc/heimdall/pkg/object/job" | ||||||||||||||||||||||||||
| "github.com/patterninc/heimdall/pkg/plugin" | ||||||||||||||||||||||||||
| "github.com/patterninc/heimdall/internal/pkg/rbac" | ||||||||||||||||||||||||||
|
Comment on lines
18
to
+23
|
||||||||||||||||||||||||||
| "github.com/patterninc/heimdall/internal/pkg/server" | |
| "github.com/patterninc/heimdall/pkg/object/cluster" | |
| "github.com/patterninc/heimdall/pkg/object/command" | |
| "github.com/patterninc/heimdall/pkg/object/job" | |
| "github.com/patterninc/heimdall/pkg/plugin" | |
| "github.com/patterninc/heimdall/internal/pkg/rbac" | |
| "github.com/patterninc/heimdall/internal/pkg/rbac" | |
| "github.com/patterninc/heimdall/internal/pkg/server" | |
| "github.com/patterninc/heimdall/pkg/object/cluster" | |
| "github.com/patterninc/heimdall/pkg/object/command" | |
| "github.com/patterninc/heimdall/pkg/object/job" | |
| "github.com/patterninc/heimdall/pkg/plugin" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The context import was removed but the function still uses
ctxon lines 16 and 41. Thectxvariable is not defined anywhere in this file, which will cause a compilation error. A global context variable should be defined similar to other files in this PR, or the context parameter should be kept in the function signature.