Skip to content

Commit

Permalink
Merge branch 'release-5.0' of github.com:apple/foundationdb into rele…
Browse files Browse the repository at this point in the history
…ase-5.0
  • Loading branch information
etschannen committed Jun 26, 2017
2 parents e0b2852 + 8f7c76d commit de28245
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions flow/Net2.actor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ using namespace boost::asio::ip;
// These impact both communications and the deserialization of certain zookeeper, database and IKeyValueStore keys
// xyzdev
// vvvv
uint64_t currentProtocolVersion = 0x0FDB00A470010001LL;
uint64_t currentProtocolVersion = 0x0FDB00A550010001LL;
uint64_t compatibleProtocolVersionMask = 0xffffffffffff0000LL;
uint64_t minValidProtocolVersion = 0x0FDB00A200060001LL;

Expand Down Expand Up @@ -550,7 +550,7 @@ void Net2::run() {

timeOffsetLogger = logTimeOffset();
startProfiling(this);

// Get the address to the launch function
typedef void (*runCycleFuncPtr)();
runCycleFuncPtr runFunc = reinterpret_cast<runCycleFuncPtr>(reinterpret_cast<flowGlobalType>(g_network->global(INetwork::enRunCycleFunc)));
Expand Down Expand Up @@ -606,7 +606,7 @@ void Net2::run() {
taskBegin = timer_monotonic();
numYields = 0;
int minTaskID = TaskMaxPriority;

while (!ready.empty()) {
++countTasks;
currentTaskID = ready.top().taskID;
Expand Down Expand Up @@ -671,7 +671,7 @@ void Net2::run() {
}
#endif

if ((nnow-now) > FLOW_KNOBS->SLOW_LOOP_CUTOFF && g_nondeterministic_random->random01() < (nnow-now)*FLOW_KNOBS->SLOW_LOOP_SAMPLING_RATE)
if ((nnow-now) > FLOW_KNOBS->SLOW_LOOP_CUTOFF && g_nondeterministic_random->random01() < (nnow-now)*FLOW_KNOBS->SLOW_LOOP_SAMPLING_RATE)
TraceEvent("SomewhatSlowRunLoopBottom").detail("Elapsed", nnow - now); // This includes the time spent running tasks

trackMinPriority( minTaskID, nnow );
Expand Down
2 changes: 1 addition & 1 deletion packaging/msi/FDBInstaller.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
<Product Name='$(var.Title)'
Id='{E93B02C4-7D41-458E-9117-1C6FCF6F4D41}'
Id='{72149D28-1667-4B15-9E1F-74AEB98EC63D}'
UpgradeCode='{A95EA002-686E-4164-8356-C715B7F8B1C8}'
Version='$(var.Version)'
Manufacturer='$(var.Manufacturer)'
Expand Down

0 comments on commit de28245

Please sign in to comment.