Skip to content

Commit

Permalink
Allow SDK version query to fail silently (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Davis authored Feb 12, 2020
1 parent 09a0ad0 commit d65aa5b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/src/qvm-app-version.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@
version)))
(usocket:ns-error (condition)
(cl-syslog:rfc-log (*logger* :warning "Encountered a name resolution error when fetching latest SDK version. (~A)" condition)
(:msgid "LOG0001"))
(:msgid "LOG0000"))
nil)
(usocket:socket-error (condition)
(cl-syslog:rfc-log (*logger* :warning "Encountered a socket error when fetching latest SDK version. (~A)" condition)
(:msgid "LOG0001"))
(:msgid "LOG0000"))
nil)
(sb-bsd-sockets:socket-error (condition)
(cl-syslog:rfc-log (*logger* :warning "Encountered a socket error when fetching latest SDK version. (~A)" condition)
(:msgid "LOG0001"))
(error (condition)
(cl-syslog:rfc-log (*logger* :warning "Encountered an error when fetching latest SDK version. (~A)" condition)
(:msgid "LOG0000"))
nil)))

(defun sdk-update-available-p (current-version &key (proxy nil))
Expand Down

0 comments on commit d65aa5b

Please sign in to comment.