Skip to content

Commit

Permalink
fix: fix naming discrepancies
Browse files Browse the repository at this point in the history
  • Loading branch information
pinglin committed Mar 21, 2022
1 parent 57e7b61 commit ce8a0e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion instill/model/v1alpha/model.proto
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ message DetectionOutput {
// DetectionOutputs represents a list of detection task outputs
message DetectionOutputs {
// A list of detection outputs
repeated DetectionOutput detection_output = 1;
repeated DetectionOutput detection_outputs = 1;
}

// Model service responds to incoming model requests.
Expand Down
4 changes: 2 additions & 2 deletions instill/pipeline/v1alpha/pipeline.proto
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,8 @@ message TriggerPipelineResponse {
message TriggerPipelineBinaryFileUploadRequest {
// Pipeline name
string name = 1 [ (google.api.field_behavior) = REQUIRED ];
// Pipeline content in byte chunk
bytes chunk = 2 [ (google.api.field_behavior) = REQUIRED ];
// Pipeline content in bytes
bytes bytes = 2 [ (google.api.field_behavior) = REQUIRED ];
}

// TriggerPipelineBinaryFileUploadResponse represents a response for the output of a pipeline
Expand Down

0 comments on commit ce8a0e1

Please sign in to comment.