Github user HeartSaVioR commented on a diff in the pull request:
https://github.com/apache/storm/pull/1974#discussion_r104552433
--- Diff:
storm-core/src/jvm/org/apache/storm/daemon/supervisor/AdvancedFSOps.java ---
@@ -341,6 +344,9 @@ public String slurpString(File location) throws
IOException {
* @throws IOException on any error.
*/
public void createSymlink(File link, File target) throws IOException {
+ if (_symlinksDisabled) {
+ throw new IOException("Symlinks have been disabled, this
hsould not be called");
--- End diff --
hsould -> should
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---