24 lines
509 B
Go
24 lines
509 B
Go
package realis
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/paypal/gorealis/gen-go/apache/aurora"
|
|
)
|
|
|
|
func (r *realisClient) jobExists(key aurora.JobKey) bool {
|
|
resp, err := r.client.GetConfigSummary(context.TODO(), &key)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
|
|
if resp == nil ||
|
|
resp.GetResult_() == nil ||
|
|
resp.GetResult_().GetConfigSummaryResult_() == nil ||
|
|
resp.GetResult_().GetConfigSummaryResult_().GetSummary() == nil ||
|
|
resp.GetResponseCode() != aurora.ResponseCode_OK {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|