· 4 years ago · May 11, 2021, 03:30 PM
1C:\Users\cosmin>heroku logs -n 200 --app hpp-auth
22021-05-11T11:50:53.318915+00:00 app[web.1]: Hibernate: alter table if exists users add constraint UKr43af9ap4edm43mmtq01oddj6 unique (username)
32021-05-11T11:50:53.323889+00:00 app[web.1]: Hibernate: alter table if exists users add constraint UK6dotkott2kjsp8vw4d0m25fb7 unique (email)
42021-05-11T11:50:53.328624+00:00 app[web.1]: Hibernate: alter table if exists confirmation_token add constraint FKah4p1rycwibwm6s9bsyeckq51 foreign key (user_id) references users
52021-05-11T11:50:53.332295+00:00 app[web.1]: Hibernate: alter table if exists password_reset_token add constraint FK83nsrttkwkb6ym0anu051mtxn foreign key (user_id) references users
62021-05-11T11:50:53.335142+00:00 app[web.1]: Hibernate: alter table if exists user_roles add constraint FKh8ciramu9cc9q3qcqiv4ue8a6 foreign key (role_id) references roles
72021-05-11T11:50:53.338261+00:00 app[web.1]: Hibernate: alter table if exists user_roles add constraint FKhfh9dx7w3ubf1co1vdev94g3f foreign key (user_id) references users
82021-05-11T11:50:53.345972+00:00 app[web.1]: 2021-05-11 11:50:53.345 INFO 4 --- [ main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
92021-05-11T11:50:53.359803+00:00 app[web.1]: 2021-05-11 11:50:53.359 INFO 4 --- [ main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
102021-05-11T11:50:55.841566+00:00 app[web.1]: 2021-05-11 11:50:55.841 INFO 4 --- [ main] o.s.b.a.w.s.WelcomePageHandlerMapping : Adding welcome page template: index
112021-05-11T11:50:56.017679+00:00 app[web.1]: 2021-05-11 11:50:56.017 INFO 4 --- [ main] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@138fe6ec, org.springframework.security.web.context.SecurityContextPersistenceFilter@4f936da8, org.springframework.security.web.header.HeaderWriterFilter@18a3962d, org.springframework.web.filter.CorsFilter@5e77f0f4, org.springframework.security.web.authentication.logout.LogoutFilter@3e2943ab, org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestRedirectFilter@59aa20b3, org.springframework.security.oauth2.client.web.OAuth2LoginAuthenticationFilter@4b21844c, com.hpprediction.demo.security.config.AuthTokenFilter@40e10ff8, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@6cea706c, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@452ba1db, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@76a36b71, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@19b30c92, org.springframework.security.web.session.SessionManagementFilter@2a65bb85, org.springframework.security.web.access.ExceptionTranslationFilter@52500920, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@48c40605]
122021-05-11T11:50:56.158141+00:00 app[web.1]: 2021-05-11 11:50:56.157 INFO 4 --- [ main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
132021-05-11T11:50:56.526226+00:00 app[web.1]: 2021-05-11 11:50:56.525 INFO 4 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 20315 (http) with context path ''
142021-05-11T11:50:56.576239+00:00 app[web.1]: 2021-05-11 11:50:56.575 INFO 4 --- [ main] com.hpprediction.demo.DemoApplication : Started DemoApplication in 11.788 seconds (JVM running for 13.113)
152021-05-11T11:50:56.653971+00:00 heroku[web.1]: State changed from starting to up
162021-05-11T11:50:58.175716+00:00 app[web.1]: 2021-05-11 11:50:58.175 INFO 4 --- [io-20315-exec-3] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
172021-05-11T11:50:58.175843+00:00 app[web.1]: 2021-05-11 11:50:58.175 INFO 4 --- [io-20315-exec-3] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
182021-05-11T11:50:58.177962+00:00 app[web.1]: 2021-05-11 11:50:58.177 INFO 4 --- [io-20315-exec-3] o.s.web.servlet.DispatcherServlet : Completed initialization in 2 ms
192021-05-11T11:50:58.467179+00:00 app[web.1]: Hibernate: select user0_.id as col_0_0_ from users user0_ where user0_.username=? limit ?
202021-05-11T11:50:58.486705+00:00 app[web.1]: Hibernate: select user0_.id as col_0_0_ from users user0_ where user0_.email=? limit ?
212021-05-11T11:50:58.613475+00:00 app[web.1]: Hibernate: select role0_.id as id1_2_, role0_.name as name2_2_ from roles role0_ where role0_.name=?
222021-05-11T11:50:58.629950+00:00 app[web.1]: Hibernate: select role0_.id as id1_2_, role0_.name as name2_2_ from roles role0_ where role0_.name=?
232021-05-11T11:50:58.698761+00:00 app[web.1]: Hibernate: insert into users (email, is_enabled, is_locked, name, password, phone_number, username) values (?, ?, ?, ?, ?, ?, ?)
242021-05-11T11:50:58.730370+00:00 app[web.1]: Hibernate: insert into user_roles (user_id, role_id) values (?, ?)
252021-05-11T11:50:58.733493+00:00 app[web.1]: Hibernate: insert into user_roles (user_id, role_id) values (?, ?)
262021-05-11T11:50:58.747564+00:00 app[web.1]: Hibernate: select nextval ('hibernate_sequence')
272021-05-11T11:50:58.754002+00:00 app[web.1]: Hibernate: insert into confirmation_token (confirmed_at, created_at, expires_at, token, user_id, id) values (?, ?, ?, ?, ?, ?)
282021-05-11T11:51:00.497098+00:00 heroku[router]: sock=client at=warning code=H27 desc="Client Request Interrupted" method=POST path="/api/auth/register" host=hpp-auth.herokuapp.com request_id=5a1cbcc1-c43a-48e3-9eeb-5a7facf1f63a fwd="62.121.106.125" dyno=web.1 connect=1ms service=2373ms status=499 bytes= protocol=https
292021-05-11T11:52:01.944547+00:00 app[web.1]: Hibernate: select confirmati0_.id as id1_0_, confirmati0_.confirmed_at as confirme2_0_, confirmati0_.created_at as created_3_0_, confirmati0_.expires_at as expires_4_0_, confirmati0_.token as token5_0_, confirmati0_.user_id as user_id6_0_ from confirmation_token confirmati0_ where confirmati0_.token=?
302021-05-11T11:52:01.974071+00:00 app[web.1]: Hibernate: select user0_.id as id1_4_0_, user0_.email as email2_4_0_, user0_.is_enabled as is_enabl3_4_0_, user0_.is_locked as is_locke4_4_0_, user0_.name as name5_4_0_, user0_.password as password6_4_0_, user0_.phone_number as phone_nu7_4_0_, user0_.username as username8_4_0_, roles1_.user_id as user_id1_3_1_, role2_.id as role_id2_3_1_, role2_.id as id1_2_2_, role2_.name as name2_2_2_ from users user0_ left outer join user_roles roles1_ on user0_.id=roles1_.user_id left outer join roles role2_ on roles1_.role_id=role2_.id where user0_.id=?
312021-05-11T11:52:02.005372+00:00 app[web.1]: Hibernate: update confirmation_token set confirmed_at=? where token=?
322021-05-11T11:52:02.017448+00:00 app[web.1]: Hibernate: update users set is_enabled=true where email=?
332021-05-11T11:52:02.027042+00:00 heroku[router]: at=info method=GET path="/api/auth/confirm?token=0970484f-0dcb-4086-a4d1-d8f1830527d0" host=hpp-auth.herokuapp.com request_id=7c7bd182-7dff-44e2-b1db-8ba197b83f44 fwd="62.121.106.125" dyno=web.1 connect=0ms service=112ms status=200 bytes=516 protocol=https
342021-05-11T11:52:02.357113+00:00 app[web.1]: 2021-05-11 11:52:02.356 ERROR 4 --- [io-20315-exec-5] c.h.d.security.config.AuthEntryPointJwt : Unauthorized error: Full authentication is required to access this resource
352021-05-11T11:52:02.430718+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=hpp-auth.herokuapp.com request_id=661b5cb8-8cf3-4d52-84e2-f22624239a27 fwd="62.121.106.125" dyno=web.1 connect=2ms service=105ms status=401 bytes=615 protocol=https
362021-05-11T12:24:56.524381+00:00 heroku[web.1]: Idling
372021-05-11T12:24:56.540191+00:00 heroku[web.1]: State changed from up to down
382021-05-11T12:24:57.635090+00:00 heroku[web.1]: Stopping all processes with SIGTERM
392021-05-11T12:24:57.799375+00:00 app[web.1]: 2021-05-11 12:24:57.799 INFO 4 --- [extShutdownHook] o.s.s.concurrent.ThreadPoolTaskExecutor : Shutting down ExecutorService 'applicationTaskExecutor'
402021-05-11T12:24:57.810791+00:00 app[web.1]: 2021-05-11 12:24:57.810 INFO 4 --- [extShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
412021-05-11T12:24:57.811219+00:00 app[web.1]: 2021-05-11 12:24:57.811 INFO 4 --- [extShutdownHook] .SchemaDropperImpl$DelayedDropActionImpl : HHH000477: Starting delayed evictData of schema as part of SessionFactory shut-down'
422021-05-11T12:24:57.811961+00:00 app[web.1]: Hibernate: alter table if exists confirmation_token drop constraint if exists FKah4p1rycwibwm6s9bsyeckq51
432021-05-11T12:24:57.822364+00:00 app[web.1]: Hibernate: alter table if exists password_reset_token drop constraint if exists FK83nsrttkwkb6ym0anu051mtxn
442021-05-11T12:24:57.825525+00:00 app[web.1]: Hibernate: alter table if exists user_roles drop constraint if exists FKh8ciramu9cc9q3qcqiv4ue8a6
452021-05-11T12:24:57.828806+00:00 app[web.1]: Hibernate: alter table if exists user_roles drop constraint if exists FKhfh9dx7w3ubf1co1vdev94g3f
462021-05-11T12:24:57.831453+00:00 app[web.1]: Hibernate: drop table if exists confirmation_token cascade
472021-05-11T12:24:57.838776+00:00 app[web.1]: Hibernate: drop table if exists password_reset_token cascade
482021-05-11T12:24:57.843781+00:00 app[web.1]: Hibernate: drop table if exists roles cascade
492021-05-11T12:24:57.849475+00:00 app[web.1]: Hibernate: drop table if exists user_roles cascade
502021-05-11T12:24:57.854643+00:00 app[web.1]: Hibernate: drop table if exists users cascade
512021-05-11T12:24:57.864051+00:00 app[web.1]: Hibernate: drop sequence if exists hibernate_sequence
522021-05-11T12:24:57.872330+00:00 app[web.1]: 2021-05-11 12:24:57.872 INFO 4 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
532021-05-11T12:24:57.900224+00:00 app[web.1]: 2021-05-11 12:24:57.899 INFO 4 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
542021-05-11T12:24:57.995066+00:00 heroku[web.1]: Process exited with status 143
552021-05-11T13:09:40.727307+00:00 heroku[web.1]: Unidling
562021-05-11T13:09:40.733941+00:00 heroku[web.1]: State changed from down to starting
572021-05-11T13:09:44.927817+00:00 heroku[web.1]: Starting process with command `java -Dserver.port=32035 $JAVA_OPTS -jar target/spring-boot-auth-mysql.jar`
582021-05-11T13:09:47.946009+00:00 app[web.1]: Create a Procfile to customize the command used to run this process: https://devcenter.heroku.com/articles/procfile
592021-05-11T13:09:47.978512+00:00 app[web.1]: Setting JAVA_TOOL_OPTIONS defaults based on dyno size. Custom settings will override them.
602021-05-11T13:09:47.983223+00:00 app[web.1]: Picked up JAVA_TOOL_OPTIONS: -Xmx300m -Xss512k -XX:CICompilerCount=2 -Dfile.encoding=UTF-8
612021-05-11T13:09:50.450399+00:00 app[web.1]:
622021-05-11T13:09:50.450468+00:00 app[web.1]: . ____ _ __ _ _
632021-05-11T13:09:50.450469+00:00 app[web.1]: /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
642021-05-11T13:09:50.455719+00:00 app[web.1]: ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
652021-05-11T13:09:50.455828+00:00 app[web.1]: \\/ ___)| |_)| | | | | || (_| | ) ) ) )
662021-05-11T13:09:50.455909+00:00 app[web.1]: ' |____| .__|_| |_|_| |_\__, | / / / /
672021-05-11T13:09:50.455985+00:00 app[web.1]: =========|_|==============|___/=/_/_/_/
682021-05-11T13:09:50.457591+00:00 app[web.1]: :: Spring Boot :: (v2.4.4)
692021-05-11T13:09:50.457649+00:00 app[web.1]:
702021-05-11T13:09:50.628302+00:00 app[web.1]: 2021-05-11 13:09:50.624 INFO 4 --- [ main] com.hpprediction.demo.DemoApplication : Starting DemoApplication v0.0.1-SNAPSHOT using Java 1.8.0_292-heroku on 60f553ea-adfd-429a-b56b-3efdb2aa82e5 with PID 4 (/app/target/spring-boot-auth-mysql.jar started by u35830 in /app)
712021-05-11T13:09:50.631407+00:00 app[web.1]: 2021-05-11 13:09:50.631 INFO 4 --- [ main] com.hpprediction.demo.DemoApplication : No active profile set, falling back to default profiles: default
722021-05-11T13:09:53.846189+00:00 app[web.1]: 2021-05-11 13:09:53.845 INFO 4 --- [ main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
732021-05-11T13:09:54.001042+00:00 app[web.1]: 2021-05-11 13:09:54.000 INFO 4 --- [ main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 140 ms. Found 4 JPA repository interfaces.
742021-05-11T13:09:55.113112+00:00 app[web.1]: 2021-05-11 13:09:55.112 INFO 4 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@193f604a' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
752021-05-11T13:09:55.122243+00:00 app[web.1]: 2021-05-11 13:09:55.121 INFO 4 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
762021-05-11T13:09:55.822190+00:00 app[web.1]: 2021-05-11 13:09:55.821 INFO 4 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 32035 (http)
772021-05-11T13:09:55.844083+00:00 app[web.1]: 2021-05-11 13:09:55.843 INFO 4 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
782021-05-11T13:09:55.844745+00:00 app[web.1]: 2021-05-11 13:09:55.844 INFO 4 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.44]
792021-05-11T13:09:55.943647+00:00 app[web.1]: 2021-05-11 13:09:55.943 INFO 4 --- [ main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
802021-05-11T13:09:55.943875+00:00 app[web.1]: 2021-05-11 13:09:55.943 INFO 4 --- [ main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 5154 ms
812021-05-11T13:09:56.184061+00:00 app[web.1]: 2021-05-11 13:09:56.183 WARN 4 --- [ main] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
822021-05-11T13:09:56.566942+00:00 app[web.1]: 2021-05-11 13:09:56.564 INFO 4 --- [ main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
832021-05-11T13:09:56.675880+00:00 app[web.1]: 2021-05-11 13:09:56.675 INFO 4 --- [ main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.4.29.Final
842021-05-11T13:09:56.906476+00:00 app[web.1]: 2021-05-11 13:09:56.906 INFO 4 --- [ main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
852021-05-11T13:09:57.077955+00:00 app[web.1]: 2021-05-11 13:09:57.077 INFO 4 --- [ main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
862021-05-11T13:09:57.650468+00:00 app[web.1]: 2021-05-11 13:09:57.650 INFO 4 --- [ main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
872021-05-11T13:09:57.756616+00:00 app[web.1]: 2021-05-11 13:09:57.755 INFO 4 --- [ main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL10Dialect
882021-05-11T13:09:59.650051+00:00 app[web.1]: Hibernate: alter table if exists confirmation_token drop constraint if exists FKah4p1rycwibwm6s9bsyeckq51
892021-05-11T13:09:59.655184+00:00 app[web.1]: Hibernate: alter table if exists password_reset_token drop constraint if exists FK83nsrttkwkb6ym0anu051mtxn
902021-05-11T13:09:59.661878+00:00 app[web.1]: Hibernate: alter table if exists user_roles drop constraint if exists FKh8ciramu9cc9q3qcqiv4ue8a6
912021-05-11T13:09:59.665457+00:00 app[web.1]: Hibernate: alter table if exists user_roles drop constraint if exists FKhfh9dx7w3ubf1co1vdev94g3f
922021-05-11T13:09:59.670063+00:00 app[web.1]: Hibernate: drop table if exists confirmation_token cascade
932021-05-11T13:09:59.676711+00:00 app[web.1]: Hibernate: drop table if exists password_reset_token cascade
942021-05-11T13:09:59.687303+00:00 app[web.1]: Hibernate: drop table if exists roles cascade
952021-05-11T13:09:59.695485+00:00 app[web.1]: Hibernate: drop table if exists user_roles cascade
962021-05-11T13:09:59.701930+00:00 app[web.1]: Hibernate: drop table if exists users cascade
972021-05-11T13:09:59.712672+00:00 app[web.1]: Hibernate: drop sequence if exists hibernate_sequence
982021-05-11T13:09:59.724662+00:00 app[web.1]: Hibernate: create sequence hibernate_sequence start 1 increment 1
992021-05-11T13:09:59.728925+00:00 app[web.1]: Hibernate: create table confirmation_token (id int8 not null, confirmed_at timestamp, created_at timestamp not null, expires_at timestamp not null, token varchar(255) not null, user_id int8 not null, primary key (id))
1002021-05-11T13:09:59.737518+00:00 app[web.1]: Hibernate: create table password_reset_token (id int8 not null, confirmed_at timestamp, expiry_date timestamp, token varchar(255), user_id int8 not null, primary key (id))
1012021-05-11T13:09:59.743120+00:00 app[web.1]: Hibernate: create table roles (id int4 generated by default as identity, name varchar(20), primary key (id))
1022021-05-11T13:09:59.750881+00:00 app[web.1]: Hibernate: create table user_roles (user_id int8 not null, role_id int4 not null, primary key (user_id, role_id))
1032021-05-11T13:09:59.758382+00:00 app[web.1]: Hibernate: create table users (id int8 generated by default as identity, email varchar(255), is_enabled boolean not null, is_locked boolean not null, name varchar(255), password varchar(255), phone_number varchar(255), username varchar(255), primary key (id))
1042021-05-11T13:09:59.771151+00:00 app[web.1]: Hibernate: alter table if exists users add constraint UKr43af9ap4edm43mmtq01oddj6 unique (username)
1052021-05-11T13:09:59.778271+00:00 app[web.1]: Hibernate: alter table if exists users add constraint UK6dotkott2kjsp8vw4d0m25fb7 unique (email)
1062021-05-11T13:09:59.799816+00:00 app[web.1]: Hibernate: alter table if exists confirmation_token add constraint FKah4p1rycwibwm6s9bsyeckq51 foreign key (user_id) references users
1072021-05-11T13:09:59.807101+00:00 app[web.1]: Hibernate: alter table if exists password_reset_token add constraint FK83nsrttkwkb6ym0anu051mtxn foreign key (user_id) references users
1082021-05-11T13:09:59.817479+00:00 app[web.1]: Hibernate: alter table if exists user_roles add constraint FKh8ciramu9cc9q3qcqiv4ue8a6 foreign key (role_id) references roles
1092021-05-11T13:09:59.822784+00:00 app[web.1]: Hibernate: alter table if exists user_roles add constraint FKhfh9dx7w3ubf1co1vdev94g3f foreign key (user_id) references users
1102021-05-11T13:09:59.835577+00:00 app[web.1]: 2021-05-11 13:09:59.835 INFO 4 --- [ main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
1112021-05-11T13:09:59.855766+00:00 app[web.1]: 2021-05-11 13:09:59.855 INFO 4 --- [ main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
1122021-05-11T13:10:03.546614+00:00 app[web.1]: 2021-05-11 13:10:03.546 INFO 4 --- [ main] o.s.b.a.w.s.WelcomePageHandlerMapping : Adding welcome page template: index
1132021-05-11T13:10:03.785697+00:00 app[web.1]: 2021-05-11 13:10:03.785 INFO 4 --- [ main] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@7a56812e, org.springframework.security.web.context.SecurityContextPersistenceFilter@4b85880b, org.springframework.security.web.header.HeaderWriterFilter@117e0fe5, org.springframework.web.filter.CorsFilter@2a76b80a, org.springframework.security.web.authentication.logout.LogoutFilter@26fb628, org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestRedirectFilter@459f7aa3, org.springframework.security.oauth2.client.web.OAuth2LoginAuthenticationFilter@7db534f2, com.hpprediction.demo.security.config.AuthTokenFilter@557a1e2d, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@16423501, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@4215838f, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@2289aca5, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@7eb01b12, org.springframework.security.web.session.SessionManagementFilter@78aea4b9, org.springframework.security.web.access.ExceptionTranslationFilter@3d8bbcdc, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@455351c4]
1142021-05-11T13:10:03.958722+00:00 app[web.1]: 2021-05-11 13:10:03.958 INFO 4 --- [ main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
1152021-05-11T13:10:04.467609+00:00 app[web.1]: 2021-05-11 13:10:04.467 INFO 4 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 32035 (http) with context path ''
1162021-05-11T13:10:04.490437+00:00 app[web.1]: 2021-05-11 13:10:04.490 INFO 4 --- [ main] com.hpprediction.demo.DemoApplication : Started DemoApplication in 15.106 seconds (JVM running for 16.507)
1172021-05-11T13:10:04.901020+00:00 heroku[web.1]: State changed from starting to up
1182021-05-11T13:10:07.088492+00:00 app[web.1]: 2021-05-11 13:10:07.088 INFO 4 --- [io-32035-exec-2] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
1192021-05-11T13:10:07.088562+00:00 app[web.1]: 2021-05-11 13:10:07.088 INFO 4 --- [io-32035-exec-2] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
1202021-05-11T13:10:07.090104+00:00 app[web.1]: 2021-05-11 13:10:07.089 INFO 4 --- [io-32035-exec-2] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
1212021-05-11T13:10:07.210545+00:00 app[web.1]: Hibernate: select confirmati0_.id as id1_0_, confirmati0_.confirmed_at as confirme2_0_, confirmati0_.created_at as created_3_0_, confirmati0_.expires_at as expires_4_0_, confirmati0_.token as token5_0_, confirmati0_.user_id as user_id6_0_ from confirmation_token confirmati0_ where confirmati0_.token=?
1222021-05-11T13:10:07.322915+00:00 heroku[router]: sock=client at=warning code=H27 desc="Client Request Interrupted" method=GET path="/api/auth/confirm?token=ad3cfcfc-360b-4401-b034-e0fe4ae8f5cf" host=hpp-auth.herokuapp.com request_id=3fcaa84f-9ef2-4636-a353-176af084ae84 fwd="86.122.24.101" dyno=web.1 connect=0ms service=273ms status=499 bytes= protocol=https
1232021-05-11T13:11:13.334873+00:00 app[web.1]: Hibernate: select confirmati0_.id as id1_0_, confirmati0_.confirmed_at as confirme2_0_, confirmati0_.created_at as created_3_0_, confirmati0_.expires_at as expires_4_0_, confirmati0_.token as token5_0_, confirmati0_.user_id as user_id6_0_ from confirmation_token confirmati0_ where confirmati0_.token=?
1242021-05-11T13:11:13.340704+00:00 heroku[router]: at=info method=GET path="/api/auth/confirm?token=ad3cfcfc-360b-4401-b034-e0fe4ae8f5cf" host=hpp-auth.herokuapp.com request_id=47e7656c-e21b-4137-ac1d-00ca1a037568 fwd="86.122.24.101" dyno=web.1 connect=0ms service=13ms status=403 bytes=542 protocol=https
1252021-05-11T13:11:13.636751+00:00 app[web.1]: 2021-05-11 13:11:13.636 ERROR 4 --- [io-32035-exec-6] c.h.d.security.config.AuthEntryPointJwt : Unauthorized error: Full authentication is required to access this resource
1262021-05-11T13:11:13.706217+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=hpp-auth.herokuapp.com request_id=0d3dd42d-09b2-496b-b48f-a566729b5e0e fwd="86.122.24.101" dyno=web.1 connect=0ms service=147ms status=401 bytes=615 protocol=https
1272021-05-11T13:15:34.843500+00:00 app[web.1]: Hibernate: select confirmati0_.id as id1_0_, confirmati0_.confirmed_at as confirme2_0_, confirmati0_.created_at as created_3_0_, confirmati0_.expires_at as expires_4_0_, confirmati0_.token as token5_0_, confirmati0_.user_id as user_id6_0_ from confirmation_token confirmati0_ where confirmati0_.token=?
1282021-05-11T13:15:34.874423+00:00 app[web.1]: Hibernate: select user0_.id as id1_4_0_, user0_.email as email2_4_0_, user0_.is_enabled as is_enabl3_4_0_, user0_.is_locked as is_locke4_4_0_, user0_.name as name5_4_0_, user0_.password as password6_4_0_, user0_.phone_number as phone_nu7_4_0_, user0_.username as username8_4_0_, roles1_.user_id as user_id1_3_1_, role2_.id as role_id2_3_1_, role2_.id as id1_2_2_, role2_.name as name2_2_2_ from users user0_ left outer join user_roles roles1_ on user0_.id=roles1_.user_id left outer join roles role2_ on roles1_.role_id=role2_.id where user0_.id=?
1292021-05-11T13:15:34.951501+00:00 app[web.1]: Hibernate: update confirmation_token set confirmed_at=? where token=?
1302021-05-11T13:15:34.963713+00:00 app[web.1]: Hibernate: update users set is_enabled=true where email=?
1312021-05-11T13:15:34.970241+00:00 heroku[router]: at=info method=GET path="/api/auth/confirm?token=669deb67-9fd6-443d-8020-02e978d8dab5" host=hpp-auth.herokuapp.com request_id=5b01d159-2a13-4a55-a2d0-7bbe01c19baf fwd="86.122.24.101" dyno=web.1 connect=0ms service=135ms status=200 bytes=516 protocol=https
1322021-05-11T13:15:35.208843+00:00 app[web.1]: 2021-05-11 13:15:35.208 ERROR 4 --- [io-32035-exec-9] c.h.d.security.config.AuthEntryPointJwt : Unauthorized error: Full authentication is required to access this resource
1332021-05-11T13:15:35.211776+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=hpp-auth.herokuapp.com request_id=f699aac0-14ed-42a7-a1d4-0606ce122a1c fwd="86.122.24.101" dyno=web.1 connect=0ms service=23ms status=401 bytes=615 protocol=https
1342021-05-11T13:16:39.788683+00:00 app[web.1]: Hibernate: select confirmati0_.id as id1_0_, confirmati0_.confirmed_at as confirme2_0_, confirmati0_.created_at as created_3_0_, confirmati0_.expires_at as expires_4_0_, confirmati0_.token as token5_0_, confirmati0_.user_id as user_id6_0_ from confirmation_token confirmati0_ where confirmati0_.token=?
1352021-05-11T13:16:39.791694+00:00 app[web.1]: Hibernate: select user0_.id as id1_4_0_, user0_.email as email2_4_0_, user0_.is_enabled as is_enabl3_4_0_, user0_.is_locked as is_locke4_4_0_, user0_.name as name5_4_0_, user0_.password as password6_4_0_, user0_.phone_number as phone_nu7_4_0_, user0_.username as username8_4_0_, roles1_.user_id as user_id1_3_1_, role2_.id as role_id2_3_1_, role2_.id as id1_2_2_, role2_.name as name2_2_2_ from users user0_ left outer join user_roles roles1_ on user0_.id=roles1_.user_id left outer join roles role2_ on roles1_.role_id=role2_.id where user0_.id=?
1362021-05-11T13:16:39.796278+00:00 app[web.1]: Hibernate: update confirmation_token set confirmed_at=? where token=?
1372021-05-11T13:16:39.801030+00:00 app[web.1]: Hibernate: update users set is_enabled=true where email=?
1382021-05-11T13:16:39.809433+00:00 heroku[router]: at=info method=GET path="/api/auth/confirm?token=810b4fa3-b6a5-4451-a187-693aa3bf04a6" host=hpp-auth.herokuapp.com request_id=d57607e6-ca13-468c-b9fb-35c165f182ac fwd="62.121.106.125" dyno=web.1 connect=1ms service=26ms status=200 bytes=516 protocol=https
1392021-05-11T13:16:40.063308+00:00 app[web.1]: 2021-05-11 13:16:40.063 ERROR 4 --- [io-32035-exec-3] c.h.d.security.config.AuthEntryPointJwt : Unauthorized error: Full authentication is required to access this resource
1402021-05-11T13:16:40.068563+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=hpp-auth.herokuapp.com request_id=385a3d92-9026-4a4c-a6f8-ef4c8392fdd8 fwd="62.121.106.125" dyno=web.1 connect=1ms service=9ms status=401 bytes=615 protocol=https
1412021-05-11T13:48:14.223261+00:00 heroku[web.1]: Idling
1422021-05-11T13:48:14.239100+00:00 heroku[web.1]: State changed from up to down
1432021-05-11T13:48:14.965166+00:00 heroku[web.1]: Stopping all processes with SIGTERM
1442021-05-11T13:48:15.055008+00:00 app[web.1]: 2021-05-11 13:48:15.054 INFO 4 --- [extShutdownHook] o.s.s.concurrent.ThreadPoolTaskExecutor : Shutting down ExecutorService 'applicationTaskExecutor'
1452021-05-11T13:48:15.059937+00:00 app[web.1]: 2021-05-11 13:48:15.059 INFO 4 --- [extShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
1462021-05-11T13:48:15.060305+00:00 app[web.1]: 2021-05-11 13:48:15.060 INFO 4 --- [extShutdownHook] .SchemaDropperImpl$DelayedDropActionImpl : HHH000477: Starting delayed evictData of schema as part of SessionFactory shut-down'
1472021-05-11T13:48:15.060879+00:00 app[web.1]: Hibernate: alter table if exists confirmation_token drop constraint if exists FKah4p1rycwibwm6s9bsyeckq51
1482021-05-11T13:48:15.067472+00:00 app[web.1]: Hibernate: alter table if exists password_reset_token drop constraint if exists FK83nsrttkwkb6ym0anu051mtxn
1492021-05-11T13:48:15.069681+00:00 app[web.1]: Hibernate: alter table if exists user_roles drop constraint if exists FKh8ciramu9cc9q3qcqiv4ue8a6
1502021-05-11T13:48:15.071585+00:00 app[web.1]: Hibernate: alter table if exists user_roles drop constraint if exists FKhfh9dx7w3ubf1co1vdev94g3f
1512021-05-11T13:48:15.073926+00:00 app[web.1]: Hibernate: drop table if exists confirmation_token cascade
1522021-05-11T13:48:15.080314+00:00 app[web.1]: Hibernate: drop table if exists password_reset_token cascade
1532021-05-11T13:48:15.084466+00:00 app[web.1]: Hibernate: drop table if exists roles cascade
1542021-05-11T13:48:15.090312+00:00 app[web.1]: Hibernate: drop table if exists user_roles cascade
1552021-05-11T13:48:15.095063+00:00 app[web.1]: Hibernate: drop table if exists users cascade
1562021-05-11T13:48:15.105808+00:00 app[web.1]: Hibernate: drop sequence if exists hibernate_sequence
1572021-05-11T13:48:15.114362+00:00 app[web.1]: 2021-05-11 13:48:15.114 INFO 4 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
1582021-05-11T13:48:15.132968+00:00 app[web.1]: 2021-05-11 13:48:15.132 INFO 4 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
1592021-05-11T13:48:15.212359+00:00 heroku[web.1]: Process exited with status 143
1602021-05-11T15:09:20.000000+00:00 app[api]: Build started by user zero6305@gmail.com
1612021-05-11T15:09:37.000000+00:00 app[api]: Build failed -- check your build output: https://dashboard.heroku.com/apps/eb2b71f3-00fb-4ab7-acd5-645b4b27b363/activity/builds/8a03b87b-c528-4175-ab77-1887c280e980
1622021-05-11T15:11:52.000000+00:00 app[api]: Build started by user zero6305@gmail.com
1632021-05-11T15:12:08.000000+00:00 app[api]: Build failed -- check your build output: https://dashboard.heroku.com/apps/eb2b71f3-00fb-4ab7-acd5-645b4b27b363/activity/builds/419b4ee4-d7ef-4fee-ad4b-cd028d747e4e
1642021-05-11T15:12:25.000000+00:00 app[api]: Build started by user zero6305@gmail.com
1652021-05-11T15:12:44.000000+00:00 app[api]: Build failed -- check your build output: https://dashboard.heroku.com/apps/eb2b71f3-00fb-4ab7-acd5-645b4b27b363/activity/builds/2a169580-a28a-4fb5-8bb2-2ee4529dd0ea
1662021-05-11T15:13:38.000000+00:00 app[api]: Build started by user zero6305@gmail.com
1672021-05-11T15:14:08.586148+00:00 app[api]: Deploy 33bb3d37 by user zero6305@gmail.com
1682021-05-11T15:14:08.586148+00:00 app[api]: Release v14 created by user zero6305@gmail.com
1692021-05-11T15:14:09.909662+00:00 heroku[web.1]: State changed from down to starting
1702021-05-11T15:14:14.203918+00:00 heroku[web.1]: Starting process with command `java -Dserver.port=3900 $JAVA_OPTS -jar target/demo-0.0.1-SNAPSHOT.jar`
1712021-05-11T15:14:16.370867+00:00 app[web.1]: Create a Procfile to customize the command used to run this process: https://devcenter.heroku.com/articles/procfile
1722021-05-11T15:14:16.388277+00:00 app[web.1]: Setting JAVA_TOOL_OPTIONS defaults based on dyno size. Custom settings will override them.
1732021-05-11T15:14:16.392049+00:00 app[web.1]: Picked up JAVA_TOOL_OPTIONS: -Xmx300m -Xss512k -XX:CICompilerCount=2 -Dfile.encoding=UTF-8
1742021-05-11T15:14:16.513502+00:00 app[web.1]: no main manifest attribute, in target/demo-0.0.1-SNAPSHOT.jar
1752021-05-11T15:14:16.581131+00:00 heroku[web.1]: Process exited with status 1
1762021-05-11T15:14:16.643084+00:00 heroku[web.1]: State changed from starting to crashed
1772021-05-11T15:14:16.646128+00:00 heroku[web.1]: State changed from crashed to starting
1782021-05-11T15:14:21.000000+00:00 app[api]: Build succeeded
1792021-05-11T15:14:21.720460+00:00 heroku[web.1]: Starting process with command `java -Dserver.port=52247 $JAVA_OPTS -jar target/demo-0.0.1-SNAPSHOT.jar`
1802021-05-11T15:14:25.493507+00:00 app[web.1]: Create a Procfile to customize the command used to run this process: https://devcenter.heroku.com/articles/procfile
1812021-05-11T15:14:25.705706+00:00 app[web.1]: Setting JAVA_TOOL_OPTIONS defaults based on dyno size. Custom settings will override them.
1822021-05-11T15:14:25.754368+00:00 app[web.1]: Picked up JAVA_TOOL_OPTIONS: -Xmx300m -Xss512k -XX:CICompilerCount=2 -Dfile.encoding=UTF-8
1832021-05-11T15:14:26.208341+00:00 app[web.1]: no main manifest attribute, in target/demo-0.0.1-SNAPSHOT.jar
1842021-05-11T15:14:26.305388+00:00 heroku[web.1]: Process exited with status 1
1852021-05-11T15:14:26.501072+00:00 heroku[web.1]: State changed from starting to crashed
1862021-05-11T15:18:05.000000+00:00 app[api]: Build started by user zero6305@gmail.com
1872021-05-11T15:18:33.613536+00:00 app[api]: Deploy a6ab7e56 by user zero6305@gmail.com
1882021-05-11T15:18:33.613536+00:00 app[api]: Release v15 created by user zero6305@gmail.com
1892021-05-11T15:18:34.969766+00:00 heroku[web.1]: State changed from crashed to starting
1902021-05-11T15:18:39.772056+00:00 heroku[web.1]: Starting process with command `java -Dserver.port=37068 $JAVA_OPTS -jar target/demo-0.0.1-SNAPSHOT.jar`
1912021-05-11T15:18:41.000000+00:00 app[api]: Build succeeded
1922021-05-11T15:18:42.793408+00:00 app[web.1]: Create a Procfile to customize the command used to run this process: https://devcenter.heroku.com/articles/procfile
1932021-05-11T15:18:42.886462+00:00 app[web.1]: Setting JAVA_TOOL_OPTIONS defaults based on dyno size. Custom settings will override them.
1942021-05-11T15:18:42.892020+00:00 app[web.1]: Picked up JAVA_TOOL_OPTIONS: -Xmx300m -Xss512k -XX:CICompilerCount=2 -Dfile.encoding=UTF-8
1952021-05-11T15:18:43.022321+00:00 app[web.1]: no main manifest attribute, in target/demo-0.0.1-SNAPSHOT.jar
1962021-05-11T15:18:43.079206+00:00 heroku[web.1]: Process exited with status 1
1972021-05-11T15:18:43.220228+00:00 heroku[web.1]: State changed from starting to crashed
1982021-05-11T15:19:26.388393+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=POST path="/api/auth/register" host=hpp-auth.herokuapp.com request_id=293bc6fd-ee8d-4d64-adc3-04549823195b fwd="86.122.24.101" dyno= connect= service= status=503 bytes= protocol=https
1992021-05-11T15:19:36.223985+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=hpp-auth.herokuapp.com request_id=9f4234ee-c9e5-4c05-8a21-cd6e739c1d28 fwd="86.122.24.101" dyno= connect= service= status=503 bytes= protocol=https
2002021-05-11T15:19:36.789444+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=hpp-auth.herokuapp.com request_id=bf268d02-5c5f-4a03-9646-5df3a3601f48 fwd="86.122.24.101" dyno= connect= service= status=503 bytes= protocol=https
2012021-05-11T15:20:28.286640+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=POST path="/api/auth/register" host=hpp-auth.herokuapp.com request_id=2344a8e2-996d-4c05-8c69-f4ad0c1b3afc fwd="86.122.24.101" dyno= connect= service= status=503 bytes= protocol=https
202
203C:\Users\cosmin>