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
@@ -106,14 +110,20 @@ class SFTPFileSynchronizer(connectionInfo: SFTPConfiguration, project: Project,
106
110
}
107
111
108
112
if (!channelSftp.absoluteDirExists(connectionInfo.workspaceBasePath)) {
109
-
EventDataLogger.logError("Remote project base path ${connectionInfo.workspaceBasePath} does not exist or is not a directory. Please make sure the value is a valid absolute directory path", project)
113
+
EventDataLogger.logError(
114
+
"Remote project base path ${connectionInfo.workspaceBasePath} does not exist or is not a directory. Please make sure the value is a valid absolute directory path",
115
+
project
116
+
)
110
117
return
111
118
}
112
119
113
120
channelSftp.cd(connectionInfo.workspaceBasePath)
114
121
115
122
if (!channelSftp.localDirExistsOnRemote(uploadLocation.toString())) {
116
-
EventDataLogger.logInfo("Upload path $uploadLocation does not exist or is not a directory. Going to create it.", project)
123
+
EventDataLogger.logInfo(
124
+
"Upload path $uploadLocation does not exist or is not a directory. Going to create it.",
125
+
project
126
+
)
117
127
val exists = channelSftp.mkLocalDirsOnRemote(uploadLocation.toString())
118
128
if (!exists) {
119
129
EventDataLogger.logError("Upload path $uploadLocation could not be created.", project)
0 commit comments