Skip to content

Commit

Permalink
Merge pull request #192 from HSF/flin
Browse files Browse the repository at this point in the history
v0.2.34, fix error handling of get_commands
  • Loading branch information
mightqxc authored Jul 18, 2023
2 parents 33e9f9d + 949e917 commit 987d231
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pandaharvester/commit_timestamp.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
timestamp = "20-06-2023 14:31:16 on flin (by mightqxc)"
timestamp = "18-07-2023 09:28:39 on flin (by mightqxc)"
4 changes: 2 additions & 2 deletions pandaharvester/harvestercommunicator/panda_communicator.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ def get_commands(self, n_commands):
tmpLog.debug('Commands {0}'.format(tmp_dict['Commands']))
return tmp_dict['Commands']
return []
except KeyError:
except Exception:
core_utils.dump_error_message(tmpLog, tmp_res)
return []

Expand All @@ -502,7 +502,7 @@ def ack_commands(self, command_ids):
tmpLog.debug('Finished acknowledging commands')
return True
return False
except KeyError:
except Exception:
core_utils.dump_error_message(tmpLog, tmp_res)
return False

Expand Down
2 changes: 1 addition & 1 deletion pandaharvester/panda_pkg_info.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
release_version = "0.2.33"
release_version = "0.2.34"

0 comments on commit 987d231

Please sign in to comment.