Skip to content

Commit

Permalink
lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
PreethiMaai committed Oct 15, 2024
1 parent 7ced300 commit 6b79b24
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ export default class App extends Base {
console.log('Response of Initialization :: ', res);
if (res != undefined) {
const action = res[0].discovery.navigateTo.action;
console.log('2458 action >>>>..',action)
console.log('2458 action >>>>..',action);
if (action == 'search') {
let query = res[0].discovery.navigateTo.data.query;
let lifecycle_validationString;
Expand All @@ -395,7 +395,7 @@ export default class App extends Base {
if (lifecycle_validationString == true) {
process.env.LIFECYCLE_VALIDATION = 'true';
}
console.log('2458 query.params >>>>..',query.params)
console.log('2458 query.params >>>>..',query.params);
if (query.params.pubSubPublishSuffix) {
process.env.PUBSUB_PUBLISH_TOPIC_SUFFIX = query.params.pubSubPublishSuffix;
}
Expand Down
4 changes: 2 additions & 2 deletions src/pubSubClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ class PubSubClient {
console.warn(`WARNING: No pubsub_uuid query parameter or MAC address found. Using default value: ${pubSubTopic}`);
}

console.log('2458 subscribe >>>>..',this.PUBSUB_SUBSCRIBE_TOPIC_SUFFIX)
console.log('2458 publish >>>>..',this.PUBSUB_PUBLISH_TOPIC_SUFFIX)
console.log('2458 subscribe >>>>..',this.PUBSUB_SUBSCRIBE_TOPIC_SUFFIX);
console.log('2458 publish >>>>..',this.PUBSUB_PUBLISH_TOPIC_SUFFIX);
process.env.PUBSUB_SUBSCRIBE_TOPIC = pubSubTopic + '_' + appId + this.PUBSUB_SUBSCRIBE_TOPIC_SUFFIX;
process.env.PUBSUB_PUBLISH_TOPIC = pubSubTopic + '_' + appId + this.PUBSUB_PUBLISH_TOPIC_SUFFIX;

Expand Down

0 comments on commit 6b79b24

Please sign in to comment.