Skip to content

Commit 692d977

Browse files
authored
Merge pull request #37 from PKUHPC/fix-jobid-type
fix: 修复 job_id int32 类型错误
2 parents f3c0524 + 5ef23df commit 692d977

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/stupid-readers-exist.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@scow/scow-scheduler-adapter-interface": patch
3+
---
4+
5+
将 CancelJobRequest 中 job_id 字段从 int32 修改为 uint32

protos/job.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ message SubmitJobResponse {
184184

185185
message CancelJobRequest {
186186
string user_id = 1;
187-
int32 job_id = 2;
187+
uint32 job_id = 2;
188188
}
189189

190190
message CancelJobResponse {

0 commit comments

Comments
 (0)