Skip to content

Commit

Permalink
fix: revert mode default and maximum values (#2349)
Browse files Browse the repository at this point in the history
I made a mistake in previous pull request, these socket mode values are in decimal, not octal format. Sorry.
  • Loading branch information
arunas-ka committed Feb 9, 2021
1 parent e18e966 commit b20fc48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .schema/config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@
"mode": {
"type": "integer",
"description": "Mode of unix socket in numeric form",
"default": 755,
"default": 493,
"minimum": 0,
"maximum": 777
"maximum": 511
}
}
},
Expand Down

0 comments on commit b20fc48

Please sign in to comment.