Skip to content

Commit f44279b

Browse files
TrifleMichaelsawenzel
authored andcommitted
Name fix
1 parent 3212530 commit f44279b

3 files changed

Lines changed: 18 additions & 18 deletions

File tree

CCDB/include/CCDB/CCDBDownloader.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class CCDBDownloader
7575
public:
7676
/**
7777
* Timer starts for each socket when its respective transfer finishes, and is stopped when another transfer starts for that handle.
78-
* When the timer runs out it closes the socket. The period for which socket stays open is defined by socketTimoutMS.
78+
* When the timer runs out it closes the socket. The period for which socket stays open is defined by socketTimeoutMS.
7979
*/
8080
std::unordered_map<curl_socket_t, uv_timer_t*> mSocketTimerMap;
8181

@@ -153,17 +153,17 @@ class CCDBDownloader
153153
/**
154154
* Limits the time a socket and its connection will be opened after transfer finishes.
155155
*/
156-
void setKeepaliveTimeoutTime(int timoutMS);
156+
void setKeepaliveTimeoutTime(int timeoutMS);
157157

158158
/**
159159
* Setter for the connection timeout.
160160
*/
161-
void setConnectionTimoutTime(int timoutS);
161+
void setConnectionTimeoutTime(int timeoutMS);
162162

163163
/**
164164
* Setter for the request timeout.
165165
*/
166-
void setRequestTimoutTime(int timoutS);
166+
void setRequestTimeoutTime(int timeoutMS);
167167

168168
/**
169169
* Setter for the happy eyeballs headstart.
@@ -271,7 +271,7 @@ class CCDBDownloader
271271
} PerformData;
272272

273273
/**
274-
* Called by CURL in order to close a socket. It will be called by CURL even if a timout timer closed the socket beforehand.
274+
* Called by CURL in order to close a socket. It will be called by CURL even if a timeout timer closed the socket beforehand.
275275
*
276276
* @param clientp Pointer to the CCDBDownloader instance which controls the socket.
277277
* @param item File descriptor of the socket.
@@ -337,7 +337,7 @@ class CCDBDownloader
337337
/**
338338
* Connect curl timer with uv timer.
339339
*
340-
* @param multi Multi handle for which the timout will be set
340+
* @param multi Multi handle for which the timeout will be set
341341
* @param timeout_ms Time until timeout
342342
* @param userp Pointer to the uv_timer_t handle that is used for timeout.
343343
*/

CCDB/src/CCDBDownloader.cxx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -270,19 +270,19 @@ void CCDBDownloader::setMaxParallelConnections(int limit)
270270
mMaxHandlesInUse = limit;
271271
}
272272

273-
void CCDBDownloader::setKeepaliveTimeoutTime(int timoutMS)
273+
void CCDBDownloader::setKeepaliveTimeoutTime(int timeoutMS)
274274
{
275-
mKeepaliveTimeoutMS = timoutMS;
275+
mKeepaliveTimeoutMS = timeoutMS;
276276
}
277277

278-
void CCDBDownloader::setConnectionTimoutTime(int timoutMS)
278+
void CCDBDownloader::setConnectionTimeoutTime(int timeoutMS)
279279
{
280-
mKeepaliveTimeoutMS = timoutMS;
280+
mKeepaliveTimeoutMS = timeoutMS;
281281
}
282282

283-
void CCDBDownloader::setRequestTimoutTime(int timoutMS)
283+
void CCDBDownloader::setRequestTimeoutTime(int timeoutMS)
284284
{
285-
mKeepaliveTimeoutMS = timoutMS;
285+
mKeepaliveTimeoutMS = timeoutMS;
286286
}
287287

288288
void CCDBDownloader::setHappyEyeballsHeadstartTime(int headstartMS)
@@ -292,15 +292,15 @@ void CCDBDownloader::setHappyEyeballsHeadstartTime(int headstartMS)
292292

293293
void CCDBDownloader::setOfflineTimeoutSettings()
294294
{
295-
setConnectionTimoutTime(60000);
296-
setRequestTimoutTime(300000);
295+
setConnectionTimeoutTime(60000);
296+
setRequestTimeoutTime(300000);
297297
setHappyEyeballsHeadstartTime(500);
298298
}
299299

300300
void CCDBDownloader::setOnlineTimeoutSettings()
301301
{
302-
setConnectionTimoutTime(5000);
303-
setRequestTimoutTime(30000);
302+
setConnectionTimeoutTime(5000);
303+
setRequestTimeoutTime(30000);
304304
setHappyEyeballsHeadstartTime(500);
305305
}
306306

@@ -381,7 +381,7 @@ void CCDBDownloader::transferFinished(CURL* easy_handle, CURLcode curlCode)
381381

382382
checkHandleQueue();
383383

384-
// Calling timout starts a new download if a new easy_handle was added.
384+
// Calling timeout starts a new download if a new easy_handle was added.
385385
int running_handles;
386386
curl_multi_socket_action(mCurlMultiHandle, CURL_SOCKET_TIMEOUT, 0, &running_handles);
387387
checkMultiInfo();

Framework/Core/src/runDataProcessing.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1390,7 +1390,7 @@ int runStateMachine(DataProcessorSpecs const& workflow,
13901390
auto currentTime = uv_hrtime();
13911391
uint64_t diff = (currentTime - driverInfo.startTime) / 1000000000LL;
13921392
if ((graceful_exit == false) && (driverInfo.timeout > 0) && (diff > driverInfo.timeout)) {
1393-
LOG(info) << "Timout ellapsed. Requesting to quit.";
1393+
LOG(info) << "Timeout ellapsed. Requesting to quit.";
13941394
graceful_exit = true;
13951395
}
13961396
}

0 commit comments

Comments
 (0)