Skip to content

Commit

Permalink
Update submodule to latest commit
Browse files Browse the repository at this point in the history
  • Loading branch information
yeonjy committed Apr 17, 2024
1 parent dfd52e3 commit 0bba2f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/ai_response_processor/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from news.contentqueue import rabbitmq_consumer

BASE_DIR = os.path.dirname(os.path.abspath(__file__))
load_dotenv(os.path.join(BASE_DIR, ".env"))
load_dotenv(os.path.join(BASE_DIR, "scoop-ai-env", ".env"))

app = FastAPI()
rabbitmq_consumer = rabbitmq_consumer
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class NewsCrawlingService {
private final NewsService newsService;

@Transactional
@Scheduled(cron = CRON, zone = ZONE)
// @Scheduled(cron = CRON, zone = ZONE)
public void scrap() throws IOException {
for (NewsCategory category : NewsCategory.values()) {
String categoryUrl = MAIN_URL + category.getNum();
Expand Down

0 comments on commit 0bba2f3

Please sign in to comment.