File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 55import type { TypedWorker } from '../worker' ;
66import { User } from '../../entity/user/User' ;
77import { getBrokkrClient } from '../../common/brokkr' ;
8- import { updateFlagsStatement } from '../../common/utils' ;
8+ import { isProd , updateFlagsStatement } from '../../common/utils' ;
99import { importUserExperienceFromJSON } from '../../common/profile/import' ;
1010import { logger } from '../../logger' ;
1111
@@ -14,6 +14,12 @@ export const parseCVProfileWorker: TypedWorker<'api.v1.candidate-preference-upda
1414 subscription : 'api.parse-cv-profile' ,
1515 parseMessage : ( { data } ) => CandidatePreferenceUpdated . fromBinary ( data ) ,
1616 handler : async ( { data } , con ) => {
17+ if ( isProd ) {
18+ // disabled for now so I can merge the code and will enable after backfill
19+
20+ return ;
21+ }
22+
1723 const { userId, cv } = data . payload || { } ;
1824
1925 if ( ! cv ?. blob || ! cv ?. bucket ) {
You can’t perform that action at this time.
0 commit comments