-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: log max config size exceeded (#663)
Fixes #652
- Loading branch information
Showing
18 changed files
with
103 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package run | ||
|
||
import "errors" | ||
|
||
var ( | ||
ErrRunDiscardNotAllowed = errors.New("run was not paused for confirmation or priority; discard not allowed") | ||
ErrRunCancelNotAllowed = errors.New("run was not planning or applying; cancel not allowed") | ||
ErrRunForceCancelNotAllowed = errors.New("run was not planning or applying, has not been canceled non-forcefully, or the cool-off period has not yet passed") | ||
// | ||
ErrPhaseAlreadyStarted = errors.New("phase already started") | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package workspace | ||
|
||
import "errors" | ||
|
||
var ( | ||
ErrWorkspaceAlreadyLocked = errors.New("workspace already locked") | ||
ErrWorkspaceLockedByDifferentUser = errors.New("workspace locked by different user") | ||
ErrWorkspaceLockedByRun = errors.New("workspace is locked by Run") | ||
ErrWorkspaceAlreadyUnlocked = errors.New("workspace already unlocked") | ||
ErrWorkspaceUnlockDenied = errors.New("unauthorized to unlock workspace") | ||
ErrWorkspaceInvalidLock = errors.New("invalid workspace lock") | ||
ErrUnsupportedTerraformVersion = errors.New("unsupported terraform version") | ||
|
||
ErrTagsRegexAndTriggerPatterns = errors.New("cannot specify both tags-regex and trigger-patterns") | ||
ErrTagsRegexAndAlwaysTrigger = errors.New("cannot specify both tags-regex and always-trigger") | ||
ErrTriggerPatternsAndAlwaysTrigger = errors.New("cannot specify both trigger-patterns and always-trigger") | ||
ErrInvalidTriggerPattern = errors.New("invalid trigger glob pattern") | ||
ErrInvalidTagsRegex = errors.New("invalid vcs tags regular expression") | ||
ErrAgentExecutionModeWithoutPool = errors.New("agent execution mode requires agent pool ID") | ||
ErrNonAgentExecutionModeWithPool = errors.New("agent pool ID can only be specified with agent execution mode") | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.