You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the BrooklynConfigKeys puts Os.tmp() into a freemarker template, but that results in an invalid / unparseable template on windows, probably because the temp dir has backslashes.
suggest we fix by hardcoding "/tmp/" -- it shouldn't be used in normal code paths in any case
The text was updated successfully, but these errors were encountered:
… Instead hardcode some universal value ("/tmp"). Analogous to issue #1402.
Shouldn't we raise an error in the case where it is needed instead of passing an invalid path?
the
BrooklynConfigKeys
putsOs.tmp()
into a freemarker template, but that results in an invalid / unparseable template on windows, probably because the temp dir has backslashes.suggest we fix by hardcoding
"/tmp/"
-- it shouldn't be used in normal code paths in any caseThe text was updated successfully, but these errors were encountered: