mirror of
https://github.com/kubevela/kubevela.git
synced 2026-03-03 02:01:05 +00:00
* Chore: update cue version to 0.4.3 Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com> * resolve some comments Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com> * fix lint Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com> * add more tests Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com> * rebase and add more tests Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com> * resolve comments Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com>
43 lines
1.1 KiB
Go
43 lines
1.1 KiB
Go
/*
|
|
Copyright 2021 The KubeVela Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package errors
|
|
|
|
import (
|
|
"strings"
|
|
)
|
|
|
|
const (
|
|
// LabelConflict defines the conflict label error string
|
|
LabelConflict = "LabelConflict"
|
|
)
|
|
|
|
// IsLabelConflict checks if the error is Label Conflict error
|
|
func IsLabelConflict(err error) bool {
|
|
if err == nil {
|
|
return false
|
|
}
|
|
if strings.Contains(err.Error(), LabelConflict) {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
// IsCuePathNotFound checks if the error is cue path not found error
|
|
func IsCuePathNotFound(err error) bool {
|
|
return strings.Contains(err.Error(), "failed to lookup value") && strings.Contains(err.Error(), "not exist")
|
|
}
|