Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug fix about 'ApplicationName' #62

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

lilis7575
Copy link

#20
It is also the content of the above issue.
This is a problem that occurred when using amqp-ts in electron.

import * as Amqp from "amqp-ts";

If the content is declared in app.ts and used, the application will refer to amqp-ts immediately at runtime,
This application will be assigned an ApplicationName. At this time, if the process.env.AMQPTS_APPLICATIONNAME value of the process environment is not assigned, the length of process.argv is not present, or is less than 1, an error inevitably occurs.

Since ApplicationName is not a global variable, we know that it is only used in the consumerQueueName method.

ApplicationName has a valid value only when the application is started and the startConsumer is executed as needed.

Therefore, modify to allocate AppliacationName when consumerQueueName method is called.

@lilis7575
Copy link
Author

Please check my PR

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant