Skip to content

Commit

Permalink
oops I actually have to change the changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
nuclearkatie committed Nov 30, 2023
1 parent f7d4b83 commit a44602b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cycamore Change Log
**Added:**

* GitHub workflows for building/testing on a PR and push to `main` (#549, #564)
* Add functionality for random behavior on the size of a sink (#550)
* Add functionality for random behavior on the size (#550) and frequency (#565) of a sink
* GitHub workflow to check that the CHANGELOG has been updated (#562)

**Changed:**
Expand Down
6 changes: 3 additions & 3 deletions src/sink.cc
Original file line number Diff line number Diff line change
Expand Up @@ -58,18 +58,18 @@ void Sink::EnterNotify() {
SetRequestAmt();
SetNextBuyTime();

if (random_frequency_size != "None") {
if (random_size_type != "None") {
LOG(cyclus::LEV_INFO4, "SnkFac") << "Sink " << this->id()
<< " is using random behavior "
<< random_size_type
<< " for determining request size.";
}
if (random_frequency_size != "None") {
if (random_frequency_type != "None") {
LOG(cyclus::LEV_INFO4, "SnkFac") << "Sink " << this->id()
<< " is using random behavior "
<< random_frequency_type
<< " for determining request frequency.";

}
RecordPosition();
}

Expand Down

0 comments on commit a44602b

Please sign in to comment.