Skip to content

Commit 4938460

Browse files
Sandeep PinnintiSandeep Pinninti
authored andcommitted
Capsule name Fix (#57)
Co-authored-by: Sandeep Pinninti <sandeep.pinninti@prod.hclpnp.com>
1 parent 8b71f3c commit 4938460

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

art-samples/DependencyInjection/CapsuleFactory.art

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ public:
1818
[this](RTController *c, RTActorRef *a, int index)
1919
{
2020
std::cout << "Creating LoggerWithTimeStamp with RTInjector registered create function\n";
21-
return new TimeStampLogger_Actor(c, a);
21+
return new TimeStampLogger(c, a);
2222
});
2323
#endif
2424
#ifdef FAST_PINGER
2525
RTInjector::getInstance().registerCreateFunction("/pinger",
2626
[this](RTController *c, RTActorRef *a, int index)
2727
{
2828
std::cout << "Creating FastPinger with RTInjector registered create function\n";
29-
return new FastPinger_Actor(c, a);
29+
return new FastPinger(c, a);
3030
});
3131
#endif
3232

0 commit comments

Comments
 (0)