We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d5e64d commit 8bf3a16Copy full SHA for 8bf3a16
cmd/run.go
@@ -230,7 +230,7 @@ dapr run --run-file /path/to/directory -k
230
output.DaprGRPCPort)
231
}
232
233
- if semver.Compare(fmt.Sprintf("v%v", daprVer.RuntimeVersion), "v1.14.0-rc.1") == -1 {
+ if (daprVer.RuntimeVersion != "edge") && (semver.Compare(fmt.Sprintf("v%v", daprVer.RuntimeVersion), "v1.14.0-rc.1") == -1) {
234
print.InfoStatusEvent(os.Stdout, "The scheduler is only compatible with dapr runtime 1.14 onwards.")
235
for i, arg := range output.DaprCMD.Args {
236
if strings.HasPrefix(arg, "--scheduler-host-address") {
0 commit comments