Skip to content

Commit

Permalink
Fix intellisense for restartPolicy is not right (#469)
Browse files Browse the repository at this point in the history
  • Loading branch information
SLdragon authored Jun 24, 2019
1 parent e9c68ae commit cda8942
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export class Constants {
public static routeDeploymentManifestJsonPath = ["modulesContent", "$edgeHub", "properties.desired", "routes", "*"];
public static moduleTypes = ["docker"];
public static moduleStatuses = ["running", "stopped"];
public static moduleRestartPolicies = ["always", "never", "on-failed", "on-unhealthy"];
public static moduleRestartPolicies = ["always", "never", "on-failure", "on-unhealthy"];
public static moduleSnippetLabel = "edgeModule";
public static moduleSnippetDetail = "Module for edgeAgent to start";
public static routeSnippetLabel = "edgeRoute";
Expand Down

0 comments on commit cda8942

Please sign in to comment.