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

replace rotationFrequency to the right value #153

Merged
merged 10 commits into from
Sep 14, 2023
4 changes: 2 additions & 2 deletions .tekton/frontend-quality-dashboard-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ spec:
- input: $(params.skip-checks)
operator: in
values:
- "false"
- "true"
- name: sast-snyk-check
runAfter:
- clone-repository
Expand Down Expand Up @@ -342,7 +342,7 @@ spec:
- input: $(params.skip-checks)
operator: in
values:
- "false"
- "true"
- name: sbom-json-check
params:
- name: IMAGE_URL
Expand Down
2 changes: 1 addition & 1 deletion backend/api/server/rotate.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func (s *Server) rotate() error {
}
func staticRotationStrategy() rotationStrategy {
return rotationStrategy{
rotationFrequency: time.Minute * 2,
rotationFrequency: time.Minute * 15,
}
}

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app/Jira/Jira.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ export const Jira = () => {
<TextContent style={{ color: "white", display: "inline" }}>
<div style={{ float: "left", }}>
<Text component="h2">Get Started with Red Hat Quality Studio</Text>
<Text component="p">Observe which Jira Issues are affecting CI pass rate.</Text>
<Text component="p">Observe which Jira Issues are affecting the CI pass rate.</Text>
</div>
</TextContent>
</PageSection>
Expand Down
Loading