Skip to content

Commit

Permalink
fix: type
Browse files Browse the repository at this point in the history
  • Loading branch information
peterxcli committed Jan 27, 2024
1 parent 21bb856 commit d158ab2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def stopped(self):
discord_bot_token = os.getenv("DISCORD_BOT_TOKEN")
discord_dst_channel_id = int(os.getenv("DISCORD_DST_CHANNEL_ID"))
pinecone_api_key = os.getenv("PINECONE_API_KEY")
log_size = os.getenv("LOG_SIZE", 10)
log_size = int(os.getenv("LOG_SIZE", 10))
service_name = "consumer-latest"

# init discord client
Expand Down

0 comments on commit d158ab2

Please sign in to comment.