Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
yangdsh authored and dvanaken committed May 27, 2020
1 parent 8bc1d68 commit a0089cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/driver/fabfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -1078,7 +1078,7 @@ def integration_tests():

total_n = 30
first_n = 5
last_n = 5
last_n = 10
average = 0
simulate_db_run(1, {'effective_cache_size': '0kB'})
for i in range(2, total_n + 2):
Expand Down
4 changes: 2 additions & 2 deletions server/website/website/tasks/async_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,8 +485,8 @@ def train_ddpg(train_ddpg_input):
objective = metric_data[target_obj_idx]
base_objective = base_metric_data[target_obj_idx]
prev_objective = prev_metric_data[target_obj_idx]
LOG.info('Target objective value: current: %s, base: %s, previous: %s'.\
format(objective, base_objective, prev_objective))
LOG.info('Target objective value: current: %s, base: %s, previous: %s',
objective, base_objective, prev_objective)

# Clean metric data
views = VIEWS_FOR_DDPG.get(dbms.type, None)
Expand Down

0 comments on commit a0089cc

Please sign in to comment.