Skip to content

Commit

Permalink
[YUNIKORN-987] remove references to Cloudera jiras (#347)
Browse files Browse the repository at this point in the history
  • Loading branch information
lowc1012 authored and craigcondit committed Jan 21, 2022
1 parent 0f49341 commit 8118ecf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
4 changes: 1 addition & 3 deletions test/e2e/predicates/predicates_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ var _ = BeforeSuite(func() {
Ω(err3).NotTo(HaveOccurred())
Ω(d).NotTo(BeNil())
// Updating scheduler pod annotation to trigger force refresh of configmaps
// https://jira.cloudera.com/browse/COMPX-4042
Ω(k.UpdateYunikornSchedulerPodAnnotation(annotation)).NotTo(HaveOccurred())
err = yunikorn.WaitForSchedPolicy("default", 2*time.Minute)
Ω(err).NotTo(HaveOccurred())
Expand All @@ -81,7 +80,6 @@ var _ = AfterSuite(func() {
Ω(err3).NotTo(HaveOccurred())
Ω(e).NotTo(BeNil())
// Updating scheduler pod annotation to trigger force refresh of configmaps
// https://jira.cloudera.com/browse/COMPX-4042
Ω(k.RemoveYunikornSchedulerPodAnnotation(annotation)).NotTo(HaveOccurred())
})

Expand All @@ -92,7 +90,7 @@ func TestPredicates(t *testing.T) {
ginkgo.RunSpecsWithDefaultAndCustomReporters(t, "TestPredicates", []ginkgo.Reporter{junitReporter})
}

//type Benchmarker ginkgo.Benchmarker
// type Benchmarker ginkgo.Benchmarker
var Fail = ginkgo.Fail

var Describe = ginkgo.Describe
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,6 @@ var _ = Describe("DripFeedSchedule:", func() {
Ω(ns1.Status.Phase).To(Equal(v1.NamespaceActive))
})

// Disabling/Skipping the tests as per the comment in
// https://jira.cloudera.com/browse/COMPX-4041
// Product fix is implemented as part of YUNIKORN-317
PIt("Test_State_Aware_App_Sorting", func() {
By("Submit 3 apps(app01, app02, app03) with one pod each")
for _, appID := range []string{app1, app2, app3} {
Expand All @@ -67,7 +64,7 @@ var _ = Describe("DripFeedSchedule:", func() {

By(fmt.Sprintf("Get apps from specific queue: %s", ns))
var appsFromQueue []map[string]interface{}
//Poll for apps to appear in the queue
// Poll for apps to appear in the queue
err = wait.PollImmediate(time.Second, time.Duration(60)*time.Second, func() (done bool, err error) {
appsFromQueue, err = restClient.GetAppsFromSpecificQueue("root." + ns)
if len(appsFromQueue) == 3 {
Expand Down

0 comments on commit 8118ecf

Please sign in to comment.