We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2f1378 commit d3477d1Copy full SHA for d3477d1
clion-plugin/src/main/kotlin/org/utbot/cpp/clion/plugin/client/ClientManager.kt
@@ -40,7 +40,7 @@ class ClientManager(val project: Project): Disposable {
40
fun createRandomSequence() = (1..RANDOM_SEQUENCE_LENGTH)
41
.joinToString("") { Random.nextInt(0, RANDOM_SEQUENCE_MAX_VALUE).toString() }
42
43
- return "${(System.getenv("USER") ?: "unknownUser")}-${createRandomSequence()}"
+ return "${(System.getenv("USER") ?: "user")}-${createRandomSequence()}"
44
}
45
46
companion object {
0 commit comments