Skip to content

Commit

Permalink
[KOGITO-9594] Adding classpath prefix in places required
Browse files Browse the repository at this point in the history
grpc example assumes that the proto file is somewhere in the classpath
root, not relative to the workflow file
  • Loading branch information
fjtirado committed Aug 23, 2023
1 parent f9b1777 commit cba70fd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
{
"name": "sayHello",
"type": "rpc",
"operation": "greeting.proto#Greeter#SayHello"
"operation": "classpath:greeting.proto#Greeter#SayHello"
}
],
"states": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
{
"name": "SayHelloMultipleLanguages",
"type": "rpc",
"operation": "greeting.proto#Greeter#SayHelloMultipleLanguages"
"operation": "classpath:greeting.proto#Greeter#SayHelloMultipleLanguages"
}
],
"states": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
{
"name": "SayHelloMultipleLanguagesError",
"type": "rpc",
"operation": "greeting.proto#Greeter#SayHelloMultipleLanguagesError"
"operation": "classpath:greeting.proto#Greeter#SayHelloMultipleLanguagesError"
}
],
"states": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
{
"name": "SayHelloMultipleLanguagesAtOnce",
"type": "rpc",
"operation": "greeting.proto#Greeter#SayHelloMultipleLanguagesAtOnce"
"operation": "classpath:greeting.proto#Greeter#SayHelloMultipleLanguagesAtOnce"
}
],
"states": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
{
"name": "SayHelloAllLanguages",
"type": "rpc",
"operation": "greeting.proto#Greeter#SayHelloAllLanguages"
"operation": "classpath:greeting.proto#Greeter#SayHelloAllLanguages"
}
],
"states": [
Expand Down

0 comments on commit cba70fd

Please sign in to comment.