File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
include/wrench/simgrid_S4U_util
src/wrench/services/storage/compound Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -63,14 +63,14 @@ namespace wrench {
63
63
std::unique_ptr<TMessageType> getMessage (const std::string &error_prefix = " " ) {
64
64
auto id = ++messageCounter;
65
65
#ifndef NDEBUG
66
- auto tn = this ->templateWaitingLog (get_type_name<TMessageType>(), id);
66
+ this ->templateWaitingLog (get_type_name<TMessageType>(), id);
67
67
#endif
68
68
69
69
auto message = this ->getMessage (false );
70
70
71
71
if (auto msg = dynamic_cast <TMessageType *>(message.get ())) {
72
72
#ifndef NDEBUG
73
- this ->templateWaitingLogUpdate (tn , id);
73
+ this ->templateWaitingLogUpdate (get_type_name<TMessageType>() , id);
74
74
#endif
75
75
message.release ();
76
76
return std::unique_ptr<TMessageType>(msg);
Original file line number Diff line number Diff line change @@ -846,7 +846,7 @@ namespace wrench {
846
846
847
847
auto recv = 0 ;
848
848
while (recv < request_count) {
849
- // Wait for answer to current reqeust
849
+ // Wait for answer to current request
850
850
auto msg = recv_commport->getMessage <StorageServiceFileWriteAnswerMessage>(this ->network_timeout , " CSS::writeFile(): " );
851
851
if (not msg->success )
852
852
throw ExecutionException (msg->failure_cause );
@@ -880,7 +880,7 @@ namespace wrench {
880
880
}
881
881
882
882
WRENCH_INFO (" CSS::writeFile(): Waiting for final acks" );
883
- for (const auto &mailbx_msg : messages) {
883
+ for (const auto &mailbox_msg : messages) {
884
884
recv_commport->getMessage <StorageServiceAckMessage>(" CSS::writeFile(): " );
885
885
}
886
886
S4U_CommPort::retireTemporaryCommPort (recv_commport);
You can’t perform that action at this time.
0 commit comments