Peter Winckles

Results 57 comments of Peter Winckles

> Which old client builder are you referring to? The builders for the non-CRT sync/async clients, like the one in my example. > Which features specifically are you asking for...

Thank you so much! I will test it tomorrow.

I think there may be an issue with the argument parsing? When I invoke this PR with the arguments `-sf register.xml -rxsf receiver.xml -trace_err`, it produces an error file named...

@orgads I figured out why `(null)` is appearing in the error log file name. It's because the scenario is parsed when it's constructed, but `scenario_file` isn't set till after all...

@orgads Line 2195 in sipp.cpp needs to be changed to: ``` if (creationMode == MODE_CLIENT || creationMode == MODE_MIXED) { ```

@bcail Are you imagining something like: ```java interface OcflRepository { void log(String objectId, String logFileName, String message); } ``` Or something like: ```java interface OcflObjectUpdater { void log(String logFileName, String...

Okay, so the current proposal is: ```java interface OcflRepository { void log(String objectId, String logFileName, String message); InputStream readLogFile(String objectId, String logFileName); } ``` I am slightly hesitant to do...

Note, overwriting the file is a little dangerous as concurrent updates have a race condition.

Unfortunately, my prior PR only partially addressed the issue. The race condition still exists if a monitorable is updated before the writer is started again but after the monitorable has...

@tallpsmith @natoscott Any thoughts on a path forward here?