Skip to content

Commit 8278db0

Browse files
committed
chore: update client version to v0.1.113
Signed-off-by: Gaius <gaius.qi@gmail.com>
1 parent 395fc6c commit 8278db0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/compatibility-e2e-v2.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ jobs:
3939
chart-name: scheduler
4040
- module: client
4141
image: client
42-
image-tag: v0.1.112
42+
image-tag: v0.1.113
4343
chart-name: client
4444
- module: seed-client
4545
image: client
46-
image-tag: v0.1.112
46+
image-tag: v0.1.113
4747
chart-name: seed-client
4848

4949
steps:

test/e2e/v2/util/task.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ type TaskMetadata struct {
3434
// Check files is exist or not.
3535
func CheckFilesExist(pods []*PodExec, taskID string) bool {
3636
for _, pod := range pods {
37-
contentPath := fmt.Sprintf("%s/%s", clientContentDir, taskID)
37+
contentPath := fmt.Sprintf("%s/tasks/%s/%s", clientContentDir, taskID[:3], taskID)
3838
if _, err := pod.Command("ls", contentPath).CombinedOutput(); err != nil {
3939
// If the path does not exist, skip this client.
4040
fmt.Printf("path %s does not exist: %s\n", contentPath, err.Error())
@@ -48,7 +48,7 @@ func CheckFilesExist(pods []*PodExec, taskID string) bool {
4848
func CalculateSha256ByTaskID(pods []*PodExec, taskID string) (string, error) {
4949
var sha256sum string
5050
for _, pod := range pods {
51-
contentPath := fmt.Sprintf("%s/%s", clientContentDir, taskID)
51+
contentPath := fmt.Sprintf("%s/tasks/%s/%s", clientContentDir, taskID[:3], taskID)
5252
if _, err := pod.Command("ls", contentPath).CombinedOutput(); err != nil {
5353
// If the path does not exist, skip this client.
5454
fmt.Printf("path %s does not exist: %s\n", contentPath, err.Error())

0 commit comments

Comments
 (0)