Skip to content

Commit

Permalink
Merge pull request #84 from JarvusInnovations/develop
Browse files Browse the repository at this point in the history
Release: v0.21.5
  • Loading branch information
themightychris committed Jan 30, 2022
2 parents e859b37 + f1bde5e commit 482c949
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions backend/commands/singer-target.js
Expand Up @@ -104,9 +104,9 @@ exports.handler = async function singerTarget({
console.log(`${type}\t${stream}`, message);


// ignore state for now
if (type == 'STATE') {
console.warn('ignoring STATE message');
// ignore unhandled message types for now
if (type == 'STATE' || type == 'ACTIVATE_VERSION') {
console.warn(`ignoring ${type} message`);
continue;
}

Expand Down

0 comments on commit 482c949

Please sign in to comment.