We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 605836f commit d45ce97Copy full SHA for d45ce97
dubbo-common/src/test/java/org/apache/dubbo/common/threadpool/support/AbortPolicyWithReportTest.java
@@ -156,9 +156,9 @@ private String dumpDirectoryCannotBeCreated() {
156
final String os =
157
SystemPropertyConfigUtils.getSystemProperty(SYSTEM_OS_NAME).toLowerCase();
158
if (os.contains(OS_WIN_PREFIX)) {
159
- // "con" is one of Windows reserved names,
+ // colon is a reserved character which could not be used in a file or directory name,
160
// https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file
161
- return "con";
+ return "c:o:n";
162
} else {
163
return "/dev/full/" + UUID.randomUUID().toString();
164
}
0 commit comments