makes ignoring of blank client names.

This commit is contained in:
Bryce
2023-08-03 10:58:26 -07:00
parent 460e2077b9
commit b345051a83
3 changed files with 84 additions and 41 deletions

View File

@@ -77,7 +77,8 @@
location (parse/best-location-match matching-client location-hint location-hint )
vendor (d/pull (d/db conn) '[:vendor/default-account] :vendor/general-produce)]
(when-not (and matching-client
(not (@missing-client-hints location-hint)))
(not (@missing-client-hints location-hint))
(not (str/blank? location-hint)))
(log/warn ::missing-client
:client-hint location-hint)
(swap! missing-client-hints conj location-hint))